From a59176b31baca9f5ae9858303aba1e276395b0d7 Mon Sep 17 00:00:00 2001 From: Landon Smith Date: Fri, 30 Oct 2020 15:15:56 -0700 Subject: [PATCH 1/3] Update CDN SDK with bug fixes. --- .../mgmtmetadata/cdn_resource-manager.txt | 4 +- .../Models/CookiesMatchConditionParameters.cs | 16 +- .../DeliveryRuleHttpVersionCondition.cs | 4 - .../Models/DeliveryRuleIsDeviceCondition.cs | 4 - .../DeliveryRuleRequestMethodCondition.cs | 4 - .../DeliveryRuleRequestSchemeCondition.cs | 4 - .../HttpVersionMatchConditionParameters.cs | 20 +- .../IsDeviceMatchConditionParameters.cs | 20 +- .../KeyVaultCertificateSourceParameters.cs | 6 +- .../PostArgsMatchConditionParameters.cs | 16 +- .../QueryStringMatchConditionParameters.cs | 10 +- .../RemoteAddressMatchConditionParameters.cs | 10 +- .../RequestBodyMatchConditionParameters.cs | 10 +- .../RequestHeaderMatchConditionParameters.cs | 16 +- .../RequestMethodMatchConditionParameters.cs | 20 +- .../RequestSchemeMatchConditionParameters.cs | 20 +- .../RequestUriMatchConditionParameters.cs | 10 +- ...rlFileExtensionMatchConditionParameters.cs | 10 +- .../UrlFileNameMatchConditionParameters.cs | 10 +- .../Models/UrlPathMatchConditionParameters.cs | 10 +- .../Generated/SdkInfo_CdnManagementClient.cs | 2 +- .../src/Microsoft.Azure.Management.Cdn.csproj | 2 +- .../tests/ScenarioTests/ProfileTests.cs | 9 +- .../EndpointTests/EndpointCheckUsageTest.json | 574 +- .../EndpointTests/EndpointCreateTest.json | 1068 ++- .../EndpointTests/EndpointDeleteTest.json | 825 +- .../EndpointTests/EndpointGetListTest.json | 788 +- .../EndpointTests/EndpointPurgeLoadTest.json | 7403 ++--------------- .../EndpointTests/EndpointStartStopTest.json | 844 +- .../EndpointTests/EndpointUpdateTest.json | 644 +- .../ValidateCustomDomainTest.json | 550 +- .../GetEdgeNodeTests/GetEdgeNodeTest.json | 24 +- .../EndpointCheckNameAvailabilityTest.json | 494 +- .../OperationsTests/ListOperationsTest.json | 22 +- .../OriginTests/OriginGetListTest.json | 751 +- .../OriginTests/OriginUpdateTest.json | 1002 +-- .../ProfileTests/GenerateSsoUriTest.json | 606 +- .../GetSupportedOptimizationTypes.json | 581 +- .../ProfileTests/ProfileCheckUsageTest.json | 621 +- .../ProfileTests/ProfileCreateTest.json | 734 +- .../ProfileTests/ProfileDeleteTest.json | 622 +- .../ProfileTests/ProfileGetListTest.json | 605 +- .../ProfileListBySubcriptionTest.json | 1843 +--- .../ProfileTests/ProfileUpdateTest.json | 761 +- .../ValidateTests/ValidateProbePathTest.json | 108 +- .../WafTests/WafPolicyCreateOrUpdateTest.json | 98 +- .../WafTests/WafPolicyDeleteTest.json | 218 +- .../WafTests/WafPolicyGetListTest.json | 278 +- .../WafTests/WafPolicyLinkTest.json | 1015 +-- 49 files changed, 8027 insertions(+), 15289 deletions(-) diff --git a/eng/mgmt/mgmtmetadata/cdn_resource-manager.txt b/eng/mgmt/mgmtmetadata/cdn_resource-manager.txt index 15b1e6edc8692..a8cd91949a29a 100644 --- a/eng/mgmt/mgmtmetadata/cdn_resource-manager.txt +++ b/eng/mgmt/mgmtmetadata/cdn_resource-manager.txt @@ -4,11 +4,11 @@ Commencing code generation Generating CSharp code Executing AutoRest command cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/cdn/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2020-04 --csharp-sdks-folder=C:\git\azure-sdk-for-net\sdk -2020-08-10 21:49:57 UTC +2020-10-27 01:27:02 UTC Azure-rest-api-specs repository information GitHub fork: Azure Branch: master -Commit: 81ee445f0291ea1b284509dd42b3d37aea3799d7 +Commit: 0d847fd27172d087f21d2f82f05f973f175920d3 AutoRest information Requested version: v2 Bootstrapper version: autorest@2.0.4413 diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/CookiesMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/CookiesMatchConditionParameters.cs index 0df2f1f4222c8..501b665b13499 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/CookiesMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/CookiesMatchConditionParameters.cs @@ -34,17 +34,17 @@ public CookiesMatchConditionParameters() /// Initializes a new instance of the CookiesMatchConditionParameters /// class. /// - /// Name of Cookies to be matched /// Describes operator to be matched. /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule + /// Name of Cookies to be matched /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public CookiesMatchConditionParameters(string selector, string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public CookiesMatchConditionParameters(string operatorProperty, string selector = default(string), bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { Selector = selector; OperatorProperty = operatorProperty; @@ -111,18 +111,10 @@ static CookiesMatchConditionParameters() /// public virtual void Validate() { - if (Selector == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Selector"); - } if (OperatorProperty == null) { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleHttpVersionCondition.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleHttpVersionCondition.cs index 2c3a237bfbd91..bf5cada1e2e9f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleHttpVersionCondition.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleHttpVersionCondition.cs @@ -65,10 +65,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); } - if (Parameters != null) - { - Parameters.Validate(); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleIsDeviceCondition.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleIsDeviceCondition.cs index e59e61d7049a1..91232df33184b 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleIsDeviceCondition.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleIsDeviceCondition.cs @@ -65,10 +65,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); } - if (Parameters != null) - { - Parameters.Validate(); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestMethodCondition.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestMethodCondition.cs index edc90e365c37f..4e14ca10aaa73 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestMethodCondition.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestMethodCondition.cs @@ -65,10 +65,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); } - if (Parameters != null) - { - Parameters.Validate(); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestSchemeCondition.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestSchemeCondition.cs index 7d17f8742c241..781eab76d9653 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestSchemeCondition.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/DeliveryRuleRequestSchemeCondition.cs @@ -65,10 +65,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "Parameters"); } - if (Parameters != null) - { - Parameters.Validate(); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/HttpVersionMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/HttpVersionMatchConditionParameters.cs index 211ca9144a5ba..64ad0a484b5e0 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/HttpVersionMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/HttpVersionMatchConditionParameters.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Cdn.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -34,11 +33,11 @@ public HttpVersionMatchConditionParameters() /// Initializes a new instance of the /// HttpVersionMatchConditionParameters class. /// - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not - public HttpVersionMatchConditionParameters(IList matchValues, bool? negateCondition = default(bool?)) + /// The match value for the condition of the + /// delivery rule + public HttpVersionMatchConditionParameters(bool? negateCondition = default(bool?), IList matchValues = default(IList)) { NegateCondition = negateCondition; MatchValues = matchValues; @@ -81,18 +80,5 @@ static HttpVersionMatchConditionParameters() [JsonProperty(PropertyName = "operator")] public static string OperatorProperty { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } - } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/IsDeviceMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/IsDeviceMatchConditionParameters.cs index 92309e54ae4b5..7a38dc323700a 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/IsDeviceMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/IsDeviceMatchConditionParameters.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Cdn.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -34,12 +33,12 @@ public IsDeviceMatchConditionParameters() /// Initializes a new instance of the IsDeviceMatchConditionParameters /// class. /// - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public IsDeviceMatchConditionParameters(IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public IsDeviceMatchConditionParameters(bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { NegateCondition = negateCondition; MatchValues = matchValues; @@ -89,18 +88,5 @@ static IsDeviceMatchConditionParameters() [JsonProperty(PropertyName = "operator")] public static string OperatorProperty { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } - } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/KeyVaultCertificateSourceParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/KeyVaultCertificateSourceParameters.cs index 1a09efcef3f13..130af5fb8e284 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/KeyVaultCertificateSourceParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/KeyVaultCertificateSourceParameters.cs @@ -43,7 +43,7 @@ public KeyVaultCertificateSourceParameters() /// 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) + public KeyVaultCertificateSourceParameters(string subscriptionId, string resourceGroupName, string vaultName, string secretName, string secretVersion = default(string)) { SubscriptionId = subscriptionId; ResourceGroupName = resourceGroupName; @@ -144,10 +144,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "SecretName"); } - if (SecretVersion == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "SecretVersion"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/PostArgsMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/PostArgsMatchConditionParameters.cs index 46d513316942f..37ba0926a333f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/PostArgsMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/PostArgsMatchConditionParameters.cs @@ -34,17 +34,17 @@ public PostArgsMatchConditionParameters() /// Initializes a new instance of the PostArgsMatchConditionParameters /// class. /// - /// Name of PostArg to be matched /// Describes operator to be matched. /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule + /// Name of PostArg to be matched /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public PostArgsMatchConditionParameters(string selector, string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public PostArgsMatchConditionParameters(string operatorProperty, string selector = default(string), bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { Selector = selector; OperatorProperty = operatorProperty; @@ -111,18 +111,10 @@ static PostArgsMatchConditionParameters() /// public virtual void Validate() { - if (Selector == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Selector"); - } if (OperatorProperty == null) { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/QueryStringMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/QueryStringMatchConditionParameters.cs index 60650c87f3bb3..db9747bb904a1 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/QueryStringMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/QueryStringMatchConditionParameters.cs @@ -38,12 +38,12 @@ public QueryStringMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public QueryStringMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public QueryStringMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -107,10 +107,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RemoteAddressMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RemoteAddressMatchConditionParameters.cs index 53be556825a9c..844f102fa3c5c 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RemoteAddressMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RemoteAddressMatchConditionParameters.cs @@ -36,14 +36,14 @@ public RemoteAddressMatchConditionParameters() /// /// Describes operator to be matched. /// Possible values include: 'Any', 'IPMatch', 'GeoMatch' + /// Describes if this is negate condition + /// or not /// Match values to match against. The /// operator will apply to each value in here with OR semantics. If any /// of them match the variable with the given operator this match /// condition is considered a match. - /// Describes if this is negate condition - /// or not /// List of transforms - public RemoteAddressMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public RemoteAddressMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -109,10 +109,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestBodyMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestBodyMatchConditionParameters.cs index aaf5eaa0b3735..636b6d9b7f4c7 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestBodyMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestBodyMatchConditionParameters.cs @@ -38,12 +38,12 @@ public RequestBodyMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public RequestBodyMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public RequestBodyMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -107,10 +107,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestHeaderMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestHeaderMatchConditionParameters.cs index ce07cbc18f6fb..0cdc0f6e900c9 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestHeaderMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestHeaderMatchConditionParameters.cs @@ -34,17 +34,17 @@ public RequestHeaderMatchConditionParameters() /// Initializes a new instance of the /// RequestHeaderMatchConditionParameters class. /// - /// Name of Header to be matched /// Describes operator to be matched. /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule + /// Name of Header to be matched /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public RequestHeaderMatchConditionParameters(string selector, string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public RequestHeaderMatchConditionParameters(string operatorProperty, string selector = default(string), bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { Selector = selector; OperatorProperty = operatorProperty; @@ -111,18 +111,10 @@ static RequestHeaderMatchConditionParameters() /// public virtual void Validate() { - if (Selector == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "Selector"); - } if (OperatorProperty == null) { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestMethodMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestMethodMatchConditionParameters.cs index 16e60f7e2d57d..addbf91c880e4 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestMethodMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestMethodMatchConditionParameters.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Cdn.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -34,11 +33,11 @@ public RequestMethodMatchConditionParameters() /// Initializes a new instance of the /// RequestMethodMatchConditionParameters class. /// - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not - public RequestMethodMatchConditionParameters(IList matchValues, bool? negateCondition = default(bool?)) + /// The match value for the condition of the + /// delivery rule + public RequestMethodMatchConditionParameters(bool? negateCondition = default(bool?), IList matchValues = default(IList)) { NegateCondition = negateCondition; MatchValues = matchValues; @@ -81,18 +80,5 @@ static RequestMethodMatchConditionParameters() [JsonProperty(PropertyName = "operator")] public static string OperatorProperty { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } - } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestSchemeMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestSchemeMatchConditionParameters.cs index be8d92fb7160c..9cbfd8645d789 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestSchemeMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestSchemeMatchConditionParameters.cs @@ -10,7 +10,6 @@ namespace Microsoft.Azure.Management.Cdn.Models { - using Microsoft.Rest; using Newtonsoft.Json; using System.Collections; using System.Collections.Generic; @@ -34,11 +33,11 @@ public RequestSchemeMatchConditionParameters() /// Initializes a new instance of the /// RequestSchemeMatchConditionParameters class. /// - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not - public RequestSchemeMatchConditionParameters(IList matchValues, bool? negateCondition = default(bool?)) + /// The match value for the condition of the + /// delivery rule + public RequestSchemeMatchConditionParameters(bool? negateCondition = default(bool?), IList matchValues = default(IList)) { NegateCondition = negateCondition; MatchValues = matchValues; @@ -81,18 +80,5 @@ static RequestSchemeMatchConditionParameters() [JsonProperty(PropertyName = "operator")] public static string OperatorProperty { get; private set; } - /// - /// Validate the object. - /// - /// - /// Thrown if validation fails - /// - public virtual void Validate() - { - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } - } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestUriMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestUriMatchConditionParameters.cs index d23be012b114d..5cb84b7e5a9ff 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestUriMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/RequestUriMatchConditionParameters.cs @@ -38,12 +38,12 @@ public RequestUriMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public RequestUriMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public RequestUriMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -107,10 +107,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileExtensionMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileExtensionMatchConditionParameters.cs index cce16a9dc84cb..14b0ae6f2c363 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileExtensionMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileExtensionMatchConditionParameters.cs @@ -38,12 +38,12 @@ public UrlFileExtensionMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public UrlFileExtensionMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public UrlFileExtensionMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -108,10 +108,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileNameMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileNameMatchConditionParameters.cs index c6479fb380bf2..d8d7e30014674 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileNameMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlFileNameMatchConditionParameters.cs @@ -38,12 +38,12 @@ public UrlFileNameMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public UrlFileNameMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public UrlFileNameMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -107,10 +107,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlPathMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlPathMatchConditionParameters.cs index c351e23920a94..83cf656b498f3 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlPathMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/Models/UrlPathMatchConditionParameters.cs @@ -38,12 +38,12 @@ public UrlPathMatchConditionParameters() /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', /// 'GreaterThanOrEqual', 'Wildcard' - /// The match value for the condition of the - /// delivery rule /// Describes if this is negate condition /// or not + /// The match value for the condition of the + /// delivery rule /// List of transforms - public UrlPathMatchConditionParameters(string operatorProperty, IList matchValues, bool? negateCondition = default(bool?), IList transforms = default(IList)) + public UrlPathMatchConditionParameters(string operatorProperty, bool? negateCondition = default(bool?), IList matchValues = default(IList), IList transforms = default(IList)) { OperatorProperty = operatorProperty; NegateCondition = negateCondition; @@ -108,10 +108,6 @@ public virtual void Validate() { throw new ValidationException(ValidationRules.CannotBeNull, "OperatorProperty"); } - if (MatchValues == null) - { - throw new ValidationException(ValidationRules.CannotBeNull, "MatchValues"); - } } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/SdkInfo_CdnManagementClient.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/SdkInfo_CdnManagementClient.cs index f55574fd48a0e..974b934f9a76f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/SdkInfo_CdnManagementClient.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Generated/SdkInfo_CdnManagementClient.cs @@ -41,7 +41,7 @@ public static IEnumerable> ApiInfo_CdnManagementCl public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/cdn/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --tag=package-2020-04 --csharp-sdks-folder=C:\\git\\azure-sdk-for-net\\sdk"; public static readonly String GithubForkName = "Azure"; public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "81ee445f0291ea1b284509dd42b3d37aea3799d7"; + public static readonly String GithubCommidId = "0d847fd27172d087f21d2f82f05f973f175920d3"; public static readonly String CodeGenerationErrors = ""; public static readonly String GithubRepoName = "azure-rest-api-specs"; // END: Code Generation Metadata Section diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Microsoft.Azure.Management.Cdn.csproj b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Microsoft.Azure.Management.Cdn.csproj index 4663168aa614a..c6aac35a5fa1f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Microsoft.Azure.Management.Cdn.csproj +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Microsoft.Azure.Management.Cdn.csproj @@ -5,7 +5,7 @@ Microsoft Azure CDN Management Library - 4.4.1 + 4.4.2 Microsoft.Azure.Management.Cdn Microsoft.Azure.Management.Cdn Microsoft Azure CDN management;CDN;Cdn management; diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/ProfileTests.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/ProfileTests.cs index aa618eaa20abc..9ad13aa986f26 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/ProfileTests.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/ProfileTests.cs @@ -366,7 +366,7 @@ public void ProfileGetListTest() } } - [Fact] + [Fact(Skip = "This test fails due to a bug in RP with large lists of results. Once the RP bug is fixed this test will be re-enabled.")] public void ProfileListBySubcriptionTest() { var handler1 = new RecordedDelegatingHandler { StatusCodeToReturn = HttpStatusCode.OK }; @@ -407,7 +407,12 @@ public void ProfileListBySubcriptionTest() // List profile returns the created profile profiles = cdnMgmtClient.Profiles.List(); - Assert.NotNull(profiles.FirstOrDefault(x => x.Name == profileName)); + while (profiles.FirstOrDefault(x => x.Name == profileName) == null) + { + // Assert we haven't reached the end of the list without finding the profile. + Assert.NotNull(profiles.NextPageLink); + profiles = cdnMgmtClient.Profiles.ListNext(profiles.NextPageLink); + } // Create another resource group var resourceGroupName2 = CdnTestUtilities.CreateResourceGroup(resourcesClient); diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCheckUsageTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCheckUsageTest.json index 4d5f089951d99..be0ebf14cdac3 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCheckUsageTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCheckUsageTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "60c523ed-cf82-4b5a-9e42-f4022fe5ca52" + "9d28e000-bbd1-4844-9b60-ed57f6d33726" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "ca5bff50-34e5-4d74-bdd1-619d3d230f4e" + "d043b666-e472-49fb-bb36-e49732f29bd7" ], "x-ms-correlation-request-id": [ - "ca5bff50-34e5-4d74-bdd1-619d3d230f4e" + "d043b666-e472-49fb-bb36-e49732f29bd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221249Z:ca5bff50-34e5-4d74-bdd1-619d3d230f4e" + "WESTUS:20201027T021402Z:d043b666-e472-49fb-bb36-e49732f29bd7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:48 GMT" + "Tue, 27 Oct 2020 02:14:02 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001\",\r\n \"name\": \"cdnResourceGroup3001\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549\",\r\n \"name\": \"cdnResourceGroup7549\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "26a9ad2f-7432-46d2-8bb5-497b673e3b62" + "3cb4fcd1-4a34-43da-a099-2d2c40580f9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "dd78c638-43d0-477f-8a35-26e25d9b670c" + "ddf0d75d-676e-46e8-9002-b69007c9e9e8" ], "x-ms-client-request-id": [ - "26a9ad2f-7432-46d2-8bb5-497b673e3b62" + "3cb4fcd1-4a34-43da-a099-2d2c40580f9f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/f3034e72-5865-493a-bd1a-9c51701468b7?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/970f698c-6db7-41d7-bf70-6dbde44e840d?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,19 +129,19 @@ "24" ], "x-ms-correlation-request-id": [ - "b57da40b-1f6f-4b79-95cf-a8d6a3999fa6" + "0759b941-01ff-4751-a52f-8c81158d2068" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221254Z:b57da40b-1f6f-4b79-95cf-a8d6a3999fa6" + "WESTUS:20201027T021406Z:0759b941-01ff-4751-a52f-8c81158d2068" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:54 GMT" + "Tue, 27 Oct 2020 02:14:06 GMT" ], "Content-Length": [ - "397" + "395" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6676\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/f3034e72-5865-493a-bd1a-9c51701468b7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZjMwMzRlNzItNTg2NS00OTNhLWJkMWEtOWM1MTcwMTQ2OGI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/970f698c-6db7-41d7-bf70-6dbde44e840d?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTcwZjY5OGMtNmRiNy00MWQ3LWJmNzAtNmRiZGU0NGU4NDBkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "d72e54c7-01f1-4011-a513-013abde86b23" + "2177c86d-b509-4cd0-99c6-e6f46eaf721e" ], "x-ms-client-request-id": [ - "3382340b-27ea-498a-8eb7-6e52929d0c30" + "0db94c00-92c2-4427-88c3-eaeb33d2e829" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11999" ], "x-ms-correlation-request-id": [ - "8415cd0a-9252-48e3-974a-727618d3000d" + "4b893eb2-b2f9-40cc-bce3-f28d87c8689f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221305Z:8415cd0a-9252-48e3-974a-727618d3000d" + "WESTUS:20201027T021416Z:4b893eb2-b2f9-40cc-bce3-f28d87c8689f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:04 GMT" + "Tue, 27 Oct 2020 02:14:16 GMT" ], "Content-Length": [ "77" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "508b43bf-1a9e-4d71-8e2a-a600016c865f" + "23139d70-fdd5-47f3-8417-456d94b7c345" ], "x-ms-client-request-id": [ - "87217fac-d355-4035-99ae-3dceb227465d" + "f9b332bd-bc2e-42b1-9dd0-d4ac5da93dde" ], "OData-Version": [ "4.0" @@ -267,19 +267,19 @@ "49" ], "x-ms-correlation-request-id": [ - "6d4e7bd9-75a3-4995-ac35-7dc0781480da" + "6fe0fe43-87e9-4ddd-866d-9d287ab10908" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221306Z:6d4e7bd9-75a3-4995-ac35-7dc0781480da" + "WESTUS:20201027T021417Z:6fe0fe43-87e9-4ddd-866d-9d287ab10908" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:05 GMT" + "Tue, 27 Oct 2020 02:14:17 GMT" ], "Content-Length": [ - "396" + "394" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -288,26 +288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6676\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "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": [ - "9520ff0e-a79b-4695-8cef-7edcb61fc13a" + "2396382a-432e-4092-b81a-592f4fcd0eda" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,13 +327,13 @@ "10" ], "x-ms-request-id": [ - "4e02a4d3-02a9-42b3-9ede-7ea27a95bf45" + "cea9674a-5cf3-4b85-b681-b54c326afc1e" ], "x-ms-client-request-id": [ - "9520ff0e-a79b-4695-8cef-7edcb61fc13a" + "2396382a-432e-4092-b81a-592f4fcd0eda" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/2357c334-4183-4d61-ad4e-d9bb4c5d5b49?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/7ca1c8ef-c6f6-44cf-809f-84d20fa70b06?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -354,19 +354,19 @@ "99" ], "x-ms-correlation-request-id": [ - "d889c402-0526-4950-a15e-a497758966fc" + "baba3687-8064-4b77-af70-65d254872c92" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221309Z:d889c402-0526-4950-a15e-a497758966fc" + "WESTUS:20201027T021422Z:baba3687-8064-4b77-af70-65d254872c92" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:09 GMT" + "Tue, 27 Oct 2020 02:14:22 GMT" ], "Content-Length": [ - "1228" + "1233" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,20 +375,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint17\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint17.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7242\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7242.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/2357c334-4183-4d61-ad4e-d9bb4c5d5b49?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjM1N2MzMzQtNDE4My00ZDYxLWFkNGUtZDliYjRjNWQ1YjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/7ca1c8ef-c6f6-44cf-809f-84d20fa70b06?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2NhMWM4ZWYtYzZmNi00NGNmLTgwOWYtODRkMjBmYTcwYjA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -399,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "0f59f6d4-795d-443e-9bad-9172bf9ad56d" + "05dc7460-ef99-45b0-b95c-0c9b65ae6657" ], "x-ms-client-request-id": [ - "8f351e4f-464f-4389-a471-0a231e29dc23" + "55671027-a1ce-4bda-bf56-1342a02967aa" ], "OData-Version": [ "4.0" @@ -420,19 +420,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11998" ], "x-ms-correlation-request-id": [ - "0d88614f-e3e2-4b36-891e-a39d7af8da8e" + "ba371080-403f-426d-9b0f-0f81e30cbd5f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221320Z:0d88614f-e3e2-4b36-891e-a39d7af8da8e" + "WESTUS:20201027T021432Z:ba371080-403f-426d-9b0f-0f81e30cbd5f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:19 GMT" + "Tue, 27 Oct 2020 02:14:32 GMT" ], "Content-Length": [ "78" @@ -448,16 +448,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/2357c334-4183-4d61-ad4e-d9bb4c5d5b49?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjM1N2MzMzQtNDE4My00ZDYxLWFkNGUtZDliYjRjNWQ1YjQ5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/7ca1c8ef-c6f6-44cf-809f-84d20fa70b06?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2NhMWM4ZWYtYzZmNi00NGNmLTgwOWYtODRkMjBmYTcwYjA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -468,10 +468,10 @@ "no-cache" ], "x-ms-request-id": [ - "e000519b-6ec4-421d-9f0d-32bf8317e837" + "188d2644-ef3f-4ac5-8fec-13b387012c08" ], "x-ms-client-request-id": [ - "08f52bbf-64c2-44a0-ae0e-0ec264553b11" + "a9c1abbb-571b-485a-ad3c-e6cc65d8f3c8" ], "OData-Version": [ "4.0" @@ -489,19 +489,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11997" ], "x-ms-correlation-request-id": [ - "e990ccef-408b-4c7e-8055-47b418a6428f" + "e9729bf3-e76a-4a4b-b115-466902475f54" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221330Z:e990ccef-408b-4c7e-8055-47b418a6428f" + "WESTUS:20201027T021442Z:e9729bf3-e76a-4a4b-b115-466902475f54" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:29 GMT" + "Tue, 27 Oct 2020 02:14:42 GMT" ], "Content-Length": [ "77" @@ -517,16 +517,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "f34654e7-92f3-4474-b68f-201f973a1d74" + "0397b477-f608-4603-9ff2-8cf16206de6b" ], "x-ms-client-request-id": [ - "e685e6eb-f8ab-494a-a24a-812041e4e7ac" + "f07848c2-9161-4300-8c4f-0c1d115b1c7e" ], "OData-Version": [ "4.0" @@ -561,19 +561,19 @@ "49" ], "x-ms-correlation-request-id": [ - "059da0c2-e476-4233-a9ed-3ba85cd38428" + "dd1540a9-04ae-4965-880f-90a16f564605" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221331Z:059da0c2-e476-4233-a9ed-3ba85cd38428" + "WESTUS:20201027T021443Z:dd1540a9-04ae-4965-880f-90a16f564605" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:31 GMT" + "Tue, 27 Oct 2020 02:14:43 GMT" ], "Content-Length": [ - "1228" + "1233" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -582,20 +582,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint17\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint17.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7242\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7242.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "a0a4fb3e-2675-439a-aff5-6db380036540" + "08d3bffd-5810-4651-9a4d-45c48334d5bb" ], "x-ms-client-request-id": [ - "5fe9178c-8203-4453-9d23-d9be0402031a" + "d583b849-f13e-413b-863c-e7b45d96e70f" ], "OData-Version": [ "4.0" @@ -630,19 +630,19 @@ "48" ], "x-ms-correlation-request-id": [ - "0fd7677c-d82d-403f-b044-441065d3d2c1" + "434a6922-ff78-440b-b23d-7b0eda334dd8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221347Z:0fd7677c-d82d-403f-b044-441065d3d2c1" + "WESTUS:20201027T021459Z:434a6922-ff78-440b-b23d-7b0eda334dd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:47 GMT" + "Tue, 27 Oct 2020 02:14:59 GMT" ], "Content-Length": [ - "1438" + "1443" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint17\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint17.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n },\r\n {\r\n \"relativePath\": \"/mycars\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7242\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7242.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n },\r\n {\r\n \"relativePath\": \"/mycars\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17/checkResourceUsage?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242/checkResourceUsage?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mi9jaGVja1Jlc291cmNlVXNhZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "827dcf53-5fdb-4444-a382-26c88454c7d5" + "5410d4e4-8628-452c-9c12-47b2ef34d0b9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -681,10 +681,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc953fe5-9127-46ec-adb7-ac912782f99e" + "a11067c2-d258-4127-a007-66867b1736a3" ], "x-ms-client-request-id": [ - "827dcf53-5fdb-4444-a382-26c88454c7d5" + "5410d4e4-8628-452c-9c12-47b2ef34d0b9" ], "OData-Version": [ "4.0" @@ -705,16 +705,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "879df5a4-639b-44bd-ae80-877b259f7999" + "24d7def1-7613-4369-9789-c2a5f5faa6de" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221332Z:879df5a4-639b-44bd-ae80-877b259f7999" + "WESTUS:20201027T021445Z:24d7def1-7613-4369-9789-c2a5f5faa6de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:32 GMT" + "Tue, 27 Oct 2020 02:14:44 GMT" ], "Content-Length": [ "291" @@ -730,22 +730,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17/checkResourceUsage?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242/checkResourceUsage?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mi9jaGVja1Jlc291cmNlVXNhZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "17caa12f-11f6-4f62-9179-a66c100b99a9" + "df26be2c-af57-4417-ba28-e261c0994a89" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -756,10 +756,10 @@ "no-cache" ], "x-ms-request-id": [ - "98c0377b-9843-46cb-b883-50b4c7b10ba1" + "df85bfeb-a2d6-4edf-ab34-3024bb08c216" ], "x-ms-client-request-id": [ - "17caa12f-11f6-4f62-9179-a66c100b99a9" + "df26be2c-af57-4417-ba28-e261c0994a89" ], "OData-Version": [ "4.0" @@ -780,16 +780,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "024b2e69-7aac-472d-bcd7-a293de1f1a33" + "1a8c0c46-d72f-4f14-a9be-125939d0f14d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221348Z:024b2e69-7aac-472d-bcd7-a293de1f1a33" + "WESTUS:20201027T021501Z:1a8c0c46-d72f-4f14-a9be-125939d0f14d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:48 GMT" + "Tue, 27 Oct 2020 02:15:00 GMT" ], "Content-Length": [ "291" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2Njc2L2VuZHBvaW50cy9lbmRwb2ludDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3OTMvZW5kcG9pbnRzL2VuZHBvaW50NzI0Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n },\r\n {\r\n \"relativePath\": \"/mycars\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1696f488-4b94-4aa5-a37e-13ec6c9a0b38" + "4f97ce89-7131-4629-9832-3ffe703275ba" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,19 +837,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/68d7363e-b721-4940-b6e7-979990767a19/profileresults/profile6676/endpointresults/endpoint17?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/fc350b71-905f-438a-9b2a-bd5b5c6d699f/profileresults/profile793/endpointresults/endpoint7242?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "330f0c0a-bf73-4fa5-ad98-283418cc9abc" + "c8130869-6a93-45f5-9637-1dae0d805652" ], "x-ms-client-request-id": [ - "1696f488-4b94-4aa5-a37e-13ec6c9a0b38" + "4f97ce89-7131-4629-9832-3ffe703275ba" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/68d7363e-b721-4940-b6e7-979990767a19?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/fc350b71-905f-438a-9b2a-bd5b5c6d699f?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -870,19 +870,19 @@ "98" ], "x-ms-correlation-request-id": [ - "2210c654-93b8-4675-9d72-025cea0b32e7" + "360814b1-9ec6-433a-b627-1994e611817f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221336Z:2210c654-93b8-4675-9d72-025cea0b32e7" + "WESTUS:20201027T021448Z:360814b1-9ec6-433a-b627-1994e611817f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:36 GMT" + "Tue, 27 Oct 2020 02:14:48 GMT" ], "Content-Length": [ - "1438" + "1443" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -891,20 +891,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint17\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/profiles/profile6676/endpoints/endpoint17\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint17.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n },\r\n {\r\n \"relativePath\": \"/mycars\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7242\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/profiles/profile793/endpoints/endpoint7242\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7242.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n },\r\n {\r\n \"relativePath\": \"/mycars\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001/providers/Microsoft.Cdn/operationresults/68d7363e-b721-4940-b6e7-979990767a19?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjhkNzM2M2UtYjcyMS00OTQwLWI2ZTctOTc5OTkwNzY3YTE5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549/providers/Microsoft.Cdn/operationresults/fc350b71-905f-438a-9b2a-bd5b5c6d699f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmMzNTBiNzEtOTA1Zi00MzhhLTliMmEtYmQ1YjVjNmQ2OTlmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -915,10 +915,10 @@ "no-cache" ], "x-ms-request-id": [ - "5e3373da-8c4c-41d4-a3cd-c435ebb43bc7" + "6f9974f8-ed93-4e12-a2d5-8695645cc985" ], "x-ms-client-request-id": [ - "ff4ec109-4879-49f3-8224-9186b8fce153" + "d6ff3f02-25e9-42d1-a58b-be5b07ee1a8c" ], "OData-Version": [ "4.0" @@ -936,19 +936,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-correlation-request-id": [ - "faa73e09-8503-40ce-b90a-60e0af02fb85" + "74269648-58b3-481f-8fb5-d2ba9ffbb74b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221346Z:faa73e09-8503-40ce-b90a-60e0af02fb85" + "WESTUS:20201027T021458Z:74269648-58b3-481f-8fb5-d2ba9ffbb74b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:46 GMT" + "Tue, 27 Oct 2020 02:14:58 GMT" ], "Content-Length": [ "77" @@ -964,21 +964,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3001?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMDAxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7549?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTQ5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0c4442ce-3955-447e-94ff-fda93626cb6f" + "045516b9-cb7a-4ede-9546-03f88a46418e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -990,7 +990,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -999,13 +999,13 @@ "14999" ], "x-ms-request-id": [ - "e1a0a3c0-be16-47d6-9315-21692ec46084" + "f3badc73-01c7-4b24-8a7a-5771b184a3f3" ], "x-ms-correlation-request-id": [ - "e1a0a3c0-be16-47d6-9315-21692ec46084" + "f3badc73-01c7-4b24-8a7a-5771b184a3f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221348Z:e1a0a3c0-be16-47d6-9315-21692ec46084" + "WESTUS:20201027T021501Z:f3badc73-01c7-4b24-8a7a-5771b184a3f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,7 +1014,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:13:48 GMT" + "Tue, 27 Oct 2020 02:15:00 GMT" ], "Expires": [ "-1" @@ -1027,15 +1027,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1047,22 +1047,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-request-id": [ - "ff053d10-348a-4d2a-baee-593578172f1b" + "2a7a1e93-8b42-461a-9a67-9bc52bbcadf7" ], "x-ms-correlation-request-id": [ - "ff053d10-348a-4d2a-baee-593578172f1b" + "2a7a1e93-8b42-461a-9a67-9bc52bbcadf7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221404Z:ff053d10-348a-4d2a-baee-593578172f1b" + "WESTUS:20201027T021516Z:2a7a1e93-8b42-461a-9a67-9bc52bbcadf7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1071,7 +1071,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:14:03 GMT" + "Tue, 27 Oct 2020 02:15:15 GMT" ], "Expires": [ "-1" @@ -1084,15 +1084,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1104,22 +1104,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "59600711-8193-48bc-a232-9fcfebf5d4d8" + "bda1f896-9661-4abe-9055-ae47502a9845" ], "x-ms-correlation-request-id": [ - "59600711-8193-48bc-a232-9fcfebf5d4d8" + "bda1f896-9661-4abe-9055-ae47502a9845" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221419Z:59600711-8193-48bc-a232-9fcfebf5d4d8" + "WESTUS:20201027T021531Z:bda1f896-9661-4abe-9055-ae47502a9845" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1128,7 +1128,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:14:18 GMT" + "Tue, 27 Oct 2020 02:15:30 GMT" ], "Expires": [ "-1" @@ -1141,15 +1141,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1161,22 +1161,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "4548828f-4a4d-4a7e-aa7f-a3bc868d3a49" + "a2532a96-f002-463c-b03b-8f1be3b54f14" ], "x-ms-correlation-request-id": [ - "4548828f-4a4d-4a7e-aa7f-a3bc868d3a49" + "a2532a96-f002-463c-b03b-8f1be3b54f14" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221434Z:4548828f-4a4d-4a7e-aa7f-a3bc868d3a49" + "WESTUS:20201027T021546Z:a2532a96-f002-463c-b03b-8f1be3b54f14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1185,7 +1185,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:14:33 GMT" + "Tue, 27 Oct 2020 02:15:45 GMT" ], "Expires": [ "-1" @@ -1198,15 +1198,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1218,22 +1218,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "3749c3b6-f728-4243-94ac-73df1eb14fe3" + "230f3ce9-1e54-464b-9a34-a94b15707eb3" ], "x-ms-correlation-request-id": [ - "3749c3b6-f728-4243-94ac-73df1eb14fe3" + "230f3ce9-1e54-464b-9a34-a94b15707eb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221449Z:3749c3b6-f728-4243-94ac-73df1eb14fe3" + "WESTUS:20201027T021601Z:230f3ce9-1e54-464b-9a34-a94b15707eb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1242,7 +1242,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:14:48 GMT" + "Tue, 27 Oct 2020 02:16:00 GMT" ], "Expires": [ "-1" @@ -1255,15 +1255,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1275,22 +1275,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "01d0cef6-3196-4088-ae35-b954bf829940" + "7018574e-16cc-4f8b-9116-ecf0c728b363" ], "x-ms-correlation-request-id": [ - "01d0cef6-3196-4088-ae35-b954bf829940" + "7018574e-16cc-4f8b-9116-ecf0c728b363" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221504Z:01d0cef6-3196-4088-ae35-b954bf829940" + "WESTUS:20201027T021616Z:7018574e-16cc-4f8b-9116-ecf0c728b363" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1299,7 +1299,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:15:03 GMT" + "Tue, 27 Oct 2020 02:16:16 GMT" ], "Expires": [ "-1" @@ -1312,15 +1312,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1332,22 +1332,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "6cbd09e8-f1e3-4b31-b7d5-3f70c26547a3" + "72383f8f-8544-4aa9-b175-7e8208f6055b" ], "x-ms-correlation-request-id": [ - "6cbd09e8-f1e3-4b31-b7d5-3f70c26547a3" + "72383f8f-8544-4aa9-b175-7e8208f6055b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221519Z:6cbd09e8-f1e3-4b31-b7d5-3f70c26547a3" + "WESTUS:20201027T021631Z:72383f8f-8544-4aa9-b175-7e8208f6055b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1356,7 +1356,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:15:18 GMT" + "Tue, 27 Oct 2020 02:16:31 GMT" ], "Expires": [ "-1" @@ -1369,15 +1369,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1389,22 +1389,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "655dc96d-7c79-4695-9e91-e848f0a20312" + "5f0614c7-426a-4372-94bd-b90eea847b2e" ], "x-ms-correlation-request-id": [ - "655dc96d-7c79-4695-9e91-e848f0a20312" + "5f0614c7-426a-4372-94bd-b90eea847b2e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221534Z:655dc96d-7c79-4695-9e91-e848f0a20312" + "WESTUS:20201027T021646Z:5f0614c7-426a-4372-94bd-b90eea847b2e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1413,7 +1413,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:15:33 GMT" + "Tue, 27 Oct 2020 02:16:46 GMT" ], "Expires": [ "-1" @@ -1426,15 +1426,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1446,22 +1446,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "ba90e378-e17e-4004-8d8c-4a8d17267b66" + "b4ffbce9-b0e4-40a8-95d5-f2ba778ead38" ], "x-ms-correlation-request-id": [ - "ba90e378-e17e-4004-8d8c-4a8d17267b66" + "b4ffbce9-b0e4-40a8-95d5-f2ba778ead38" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221549Z:ba90e378-e17e-4004-8d8c-4a8d17267b66" + "WESTUS:20201027T021701Z:b4ffbce9-b0e4-40a8-95d5-f2ba778ead38" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1470,7 +1470,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:15:48 GMT" + "Tue, 27 Oct 2020 02:17:01 GMT" ], "Expires": [ "-1" @@ -1483,15 +1483,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1503,22 +1503,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "4502da7d-6ee8-44b0-96ce-a08d84b03117" + "ed69fc5c-fc60-4866-9505-bde87ed3adf4" ], "x-ms-correlation-request-id": [ - "4502da7d-6ee8-44b0-96ce-a08d84b03117" + "ed69fc5c-fc60-4866-9505-bde87ed3adf4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221604Z:4502da7d-6ee8-44b0-96ce-a08d84b03117" + "WESTUS:20201027T021716Z:ed69fc5c-fc60-4866-9505-bde87ed3adf4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1527,7 +1527,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:04 GMT" + "Tue, 27 Oct 2020 02:17:16 GMT" ], "Expires": [ "-1" @@ -1540,15 +1540,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1560,22 +1560,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "9267489a-c936-4897-82de-85557e59a993" + "ea2f1029-76f7-4a66-9b05-22a0f2e5efa3" ], "x-ms-correlation-request-id": [ - "9267489a-c936-4897-82de-85557e59a993" + "ea2f1029-76f7-4a66-9b05-22a0f2e5efa3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221619Z:9267489a-c936-4897-82de-85557e59a993" + "WESTUS:20201027T021731Z:ea2f1029-76f7-4a66-9b05-22a0f2e5efa3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1584,7 +1584,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:19 GMT" + "Tue, 27 Oct 2020 02:17:31 GMT" ], "Expires": [ "-1" @@ -1597,15 +1597,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1617,16 +1617,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-request-id": [ - "2084d8e7-2b00-44bf-a408-db69d1740e90" + "95ff61b8-5854-4991-8af3-5b2497c3cdd4" ], "x-ms-correlation-request-id": [ - "2084d8e7-2b00-44bf-a408-db69d1740e90" + "95ff61b8-5854-4991-8af3-5b2497c3cdd4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221634Z:2084d8e7-2b00-44bf-a408-db69d1740e90" + "WESTUS:20201027T021747Z:95ff61b8-5854-4991-8af3-5b2497c3cdd4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1635,7 +1635,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:34 GMT" + "Tue, 27 Oct 2020 02:17:46 GMT" ], "Expires": [ "-1" @@ -1648,15 +1648,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzAwMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekF3TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzU0OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelUwT1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1668,16 +1668,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-request-id": [ - "f4ce64ae-a4a7-4fd3-800b-ad4f2d281aaa" + "32a117f6-6a07-4810-aa90-c9a3cd42d7be" ], "x-ms-correlation-request-id": [ - "f4ce64ae-a4a7-4fd3-800b-ad4f2d281aaa" + "32a117f6-6a07-4810-aa90-c9a3cd42d7be" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221634Z:f4ce64ae-a4a7-4fd3-800b-ad4f2d281aaa" + "WESTUS:20201027T021747Z:32a117f6-6a07-4810-aa90-c9a3cd42d7be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1686,7 +1686,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:34 GMT" + "Tue, 27 Oct 2020 02:17:46 GMT" ], "Expires": [ "-1" @@ -1701,11 +1701,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup3001" + "cdnResourceGroup7549" ], "EndpointCheckUsageTest": [ - "profile6676", - "endpoint17" + "profile793", + "endpoint7242" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCreateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCreateTest.json index 1eb7ffa9cc930..b50fd88802490 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCreateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointCreateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "23f399e7-f19d-4454-8f43-2f633e3243b2" + "aedfa2c3-309a-4b47-bc1a-f5a02ad66559" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "791bf183-cc73-429c-bf83-f69c06f95b62" + "947add0d-ed82-4921-99a4-d462996d9426" ], "x-ms-correlation-request-id": [ - "791bf183-cc73-429c-bf83-f69c06f95b62" + "947add0d-ed82-4921-99a4-d462996d9426" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220650Z:791bf183-cc73-429c-bf83-f69c06f95b62" + "WESTUS:20201027T020823Z:947add0d-ed82-4921-99a4-d462996d9426" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:50 GMT" + "Tue, 27 Oct 2020 02:08:22 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047\",\r\n \"name\": \"cdnResourceGroup2047\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526\",\r\n \"name\": \"cdnResourceGroup9526\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "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": { "x-ms-client-request-id": [ - "18fb1345-49d0-452c-99d0-535f990053be" + "fb192884-0116-4786-817d-93c0d4f5c152" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "0216f555-4397-4b85-b798-2415703d3339" + "0e2b7494-2f73-4fee-ab84-3baf427943b9" ], "x-ms-client-request-id": [ - "18fb1345-49d0-452c-99d0-535f990053be" + "fb192884-0116-4786-817d-93c0d4f5c152" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/1869c8bd-ae4e-43c7-a20d-3d571d5eeca0?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/30db6d7b-9696-4fe8-9bc1-eaed2fdf5b11?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "d51be88d-3433-46ab-8c0a-fdcf2f27ac0d" + "80bf8334-4f73-4fd5-bd5a-da5ed740680c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220657Z:d51be88d-3433-46ab-8c0a-fdcf2f27ac0d" + "WESTUS:20201027T020827Z:80bf8334-4f73-4fd5-bd5a-da5ed740680c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:57 GMT" + "Tue, 27 Oct 2020 02:08:26 GMT" ], "Content-Length": [ "400" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6347\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/1869c8bd-ae4e-43c7-a20d-3d571d5eeca0?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTg2OWM4YmQtYWU0ZS00M2M3LWEyMGQtM2Q1NzFkNWVlY2EwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/30db6d7b-9696-4fe8-9bc1-eaed2fdf5b11?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzBkYjZkN2ItOTY5Ni00ZmU4LTliYzEtZWFlZDJmZGY1YjExP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "4f3f9611-b223-4d67-b002-16a16633f1e5" + "515ca53d-293a-4f0b-aaf7-94bebc6a7129" ], "x-ms-client-request-id": [ - "7b7ed533-b9db-4b65-80be-e718e88ebaeb" + "b0ac4be6-09ae-4ba0-b95d-569989845859" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "06e378dd-85f9-4c9a-bb48-a8d88b8e0010" + "faa2ca53-9682-4a8b-b0b7-2e8a1add02e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220707Z:06e378dd-85f9-4c9a-bb48-a8d88b8e0010" + "WESTUS:20201027T020837Z:faa2ca53-9682-4a8b-b0b7-2e8a1add02e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:07 GMT" + "Tue, 27 Oct 2020 02:08:36 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/1869c8bd-ae4e-43c7-a20d-3d571d5eeca0?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTg2OWM4YmQtYWU0ZS00M2M3LWEyMGQtM2Q1NzFkNWVlY2EwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/30db6d7b-9696-4fe8-9bc1-eaed2fdf5b11?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzBkYjZkN2ItOTY5Ni00ZmU4LTliYzEtZWFlZDJmZGY1YjExP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "001c8aa7-1862-4106-8d28-412890db3c2f" + "00ed0a3a-0374-4a92-8b82-7a44a941cf2f" ], "x-ms-client-request-id": [ - "da9e34e2-442d-4b1c-8c69-bd786e34986c" + "81d80dc5-a57b-41c9-a39d-6bc8189027b3" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "df9c3911-e95c-42ce-aef0-26ed9272141c" + "2638a60a-a218-4818-b588-a8dcd985ad37" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220718Z:df9c3911-e95c-42ce-aef0-26ed9272141c" + "WESTUS:20201027T020848Z:2638a60a-a218-4818-b588-a8dcd985ad37" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:17 GMT" + "Tue, 27 Oct 2020 02:08:47 GMT" ], "Content-Length": [ "77" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "75385fcc-d507-421b-86e9-e2c26727facd" + "67155ba3-f840-410f-b3e3-a37f23a2e556" ], "x-ms-client-request-id": [ - "50135929-1028-4900-8f6c-e29dc869488c" + "4ad5cd22-9d47-4518-b810-0093bb78f386" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "49" ], "x-ms-correlation-request-id": [ - "9d39c9d0-4bde-4ecc-a8e8-c8a7dee1f85c" + "e560769b-5619-4e7b-80c1-02fe8fde63f6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220719Z:9d39c9d0-4bde-4ecc-a8e8-c8a7dee1f85c" + "WESTUS:20201027T020849Z:e560769b-5619-4e7b-80c1-02fe8fde63f6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:18 GMT" + "Tue, 27 Oct 2020 02:08:48 GMT" ], "Content-Length": [ "399" @@ -357,26 +357,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6347\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ0OTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDQxODA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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 \"priority\": 3,\r\n \"weight\": 100,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e043a11f-6ea3-4f13-ace7-61e9bd932154" + "9025e8bd-af00-4405-bd9e-dee9343ac4b5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,13 +396,13 @@ "10" ], "x-ms-request-id": [ - "c35c72cf-bf6e-4246-bb3f-10ed63f3d919" + "194fc9b3-25a6-41a1-b07c-646f6cc60587" ], "x-ms-client-request-id": [ - "e043a11f-6ea3-4f13-ace7-61e9bd932154" + "9025e8bd-af00-4405-bd9e-dee9343ac4b5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/944422e0-2ede-4a68-a07a-7232dea3808e?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -423,16 +423,16 @@ "99" ], "x-ms-correlation-request-id": [ - "3c4340b2-8c20-4689-af54-d4da5e225430" + "3e502993-5ede-4dfd-ab49-4b4a7c1557fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220723Z:3c4340b2-8c20-4689-af54-d4da5e225430" + "WESTUS:20201027T020853Z:3e502993-5ede-4dfd-ab49-4b4a7c1557fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:22 GMT" + "Tue, 27 Oct 2020 02:08:52 GMT" ], "Content-Length": [ "1385" @@ -444,26 +444,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4498\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4498.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4180\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4180.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ0OTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDQxODA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUs\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "86b3a1ba-07e1-43c7-b683-61db4f7c1027" + "cbb4bdf7-0136-4fd5-8d7b-a99cf763aac3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -483,13 +483,13 @@ "gateway" ], "x-ms-request-id": [ - "8fd3acb9-269e-485c-be9d-b078ec28ed1b" + "d1b19293-ec47-498a-91df-42e3d90b89b8" ], "x-ms-correlation-request-id": [ - "8fd3acb9-269e-485c-be9d-b078ec28ed1b" + "d1b19293-ec47-498a-91df-42e3d90b89b8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220816Z:8fd3acb9-269e-485c-be9d-b078ec28ed1b" + "WESTUS:20201027T020926Z:d1b19293-ec47-498a-91df-42e3d90b89b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -498,7 +498,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:16 GMT" + "Tue, 27 Oct 2020 02:09:26 GMT" ], "Content-Length": [ "279" @@ -510,20 +510,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'profile6347/endpoint4498' already exists in location 'westus' in resource group 'cdnResourceGroup2047'. A resource with the same name cannot be created in location 'EastUs'. Please select a new resource name.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'profile6578/endpoint4180' already exists in location 'westus' in resource group 'cdnResourceGroup9526'. A resource with the same name cannot be created in location 'EastUs'. Please select a new resource name.\"\r\n }\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTBlZjRlYjItMGQxYS00ZGEzLWIzNjctMzc3MWRmZDM5MjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/944422e0-2ede-4a68-a07a-7232dea3808e?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTQ0NDIyZTAtMmVkZS00YTY4LWEwN2EtNzIzMmRlYTM4MDhlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -534,10 +534,10 @@ "no-cache" ], "x-ms-request-id": [ - "51d172b3-8eb5-41fa-8bb2-f529c2a08e36" + "2e347f12-3a51-4337-a3f0-8b5f15e6ccf9" ], "x-ms-client-request-id": [ - "165e04fe-feba-40cd-b089-686e6b510466" + "35b5dbc6-568a-4178-81ba-1231e24f8f08" ], "OData-Version": [ "4.0" @@ -558,16 +558,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "2501c794-5665-40a2-807f-b02034727e29" + "86aa7ced-5c93-42b5-a603-baacd590ed47" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220733Z:2501c794-5665-40a2-807f-b02034727e29" + "WESTUS:20201027T020903Z:86aa7ced-5c93-42b5-a603-baacd590ed47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:33 GMT" + "Tue, 27 Oct 2020 02:09:03 GMT" ], "Content-Length": [ "78" @@ -583,16 +583,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTBlZjRlYjItMGQxYS00ZGEzLWIzNjctMzc3MWRmZDM5MjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/944422e0-2ede-4a68-a07a-7232dea3808e?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTQ0NDIyZTAtMmVkZS00YTY4LWEwN2EtNzIzMmRlYTM4MDhlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -603,10 +603,10 @@ "no-cache" ], "x-ms-request-id": [ - "bfcb2c09-984d-4aac-8924-3033c8aeab5e" + "ab7e6496-ac1d-4a58-90e2-0607e221848e" ], "x-ms-client-request-id": [ - "0f1f73b9-f861-4885-af95-9cac29d32510" + "73bfbe08-f014-4576-bf77-3acd68b3d904" ], "OData-Version": [ "4.0" @@ -627,16 +627,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "239808f5-30c4-4bcc-b037-8dab14dc6435" + "e004ef66-cc7b-409d-ad58-207fbf7fc421" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220743Z:239808f5-30c4-4bcc-b037-8dab14dc6435" + "WESTUS:20201027T020914Z:e004ef66-cc7b-409d-ad58-207fbf7fc421" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:43 GMT" + "Tue, 27 Oct 2020 02:09:14 GMT" ], "Content-Length": [ "78" @@ -652,16 +652,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTBlZjRlYjItMGQxYS00ZGEzLWIzNjctMzc3MWRmZDM5MjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/944422e0-2ede-4a68-a07a-7232dea3808e?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTQ0NDIyZTAtMmVkZS00YTY4LWEwN2EtNzIzMmRlYTM4MDhlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -672,10 +672,10 @@ "no-cache" ], "x-ms-request-id": [ - "8fe5ae97-d74d-463d-a069-729363dc4d51" + "23997dc9-dda0-4640-8ef8-1985997e599a" ], "x-ms-client-request-id": [ - "4fc1bb8b-eef3-4afb-80b3-7201e17feca1" + "e5766afd-ddf3-42f8-9746-87e1cb0f25e3" ], "OData-Version": [ "4.0" @@ -696,154 +696,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "b6ae9a37-de0a-413b-ade1-ab67e79f6034" + "5e9b948c-7936-4694-82c8-026709c1b2be" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220754Z:b6ae9a37-de0a-413b-ade1-ab67e79f6034" + "WESTUS:20201027T020924Z:5e9b948c-7936-4694-82c8-026709c1b2be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:07:53 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTBlZjRlYjItMGQxYS00ZGEzLWIzNjctMzc3MWRmZDM5MjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b56ee416-04fe-42fb-bec5-6a1fcc51917f" - ], - "x-ms-client-request-id": [ - "0f28e625-e274-451b-a13a-4fc28622b2a8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "4cddafd7-730a-49bc-8e85-e37cba9e2727" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T220804Z:4cddafd7-730a-49bc-8e85-e37cba9e2727" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:08:03 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/50ef4eb2-0d1a-4da3-b367-3771dfd3923b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTBlZjRlYjItMGQxYS00ZGEzLWIzNjctMzc3MWRmZDM5MjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "feb5bcc4-274f-4d17-8cf8-ec6f2dba491b" - ], - "x-ms-client-request-id": [ - "d03a2603-0d7e-48c7-be19-a04e1c7e56a0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "67e8773b-fd17-454b-91fe-dcb992d61135" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T220814Z:67e8773b-fd17-454b-91fe-dcb992d61135" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:08:14 GMT" + "Tue, 27 Oct 2020 02:09:24 GMT" ], "Content-Length": [ "77" @@ -859,16 +721,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ0OTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDQxODA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -879,10 +741,10 @@ "no-cache" ], "x-ms-request-id": [ - "8fbcae2e-e2b9-4eaf-b113-dd431972ac63" + "42fb6eae-d18b-4b81-ac03-82441a7e8104" ], "x-ms-client-request-id": [ - "ad58889c-9075-47dd-a631-189a1367f5ff" + "f7feecb3-e994-4596-9c90-d3e87500499d" ], "OData-Version": [ "4.0" @@ -903,16 +765,16 @@ "49" ], "x-ms-correlation-request-id": [ - "4b557b79-d837-4ff5-a789-78e9dcf6a06c" + "7d076407-7989-4ce4-a697-5271128bd65f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220815Z:4b557b79-d837-4ff5-a789-78e9dcf6a06c" + "WESTUS:20201027T020925Z:7d076407-7989-4ce4-a697-5271128bd65f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:15 GMT" + "Tue, 27 Oct 2020 02:09:25 GMT" ], "Content-Length": [ "1385" @@ -924,26 +786,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4498\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4498.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4180\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4180.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ0OTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDQxODA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1030d18d-f8f5-44d3-8ec0-d4f274fb9e36" + "97c6e8cb-5749-4f9a-abcc-c971aaf396fe" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -954,10 +816,10 @@ "no-cache" ], "x-ms-request-id": [ - "471c1754-b81c-4d6c-adf8-4967d12a5ec2" + "02c1a992-d16c-4540-b50b-76488a9a91aa" ], "x-ms-client-request-id": [ - "1030d18d-f8f5-44d3-8ec0-d4f274fb9e36" + "97c6e8cb-5749-4f9a-abcc-c971aaf396fe" ], "OData-Version": [ "4.0" @@ -978,16 +840,16 @@ "48" ], "x-ms-correlation-request-id": [ - "7a746e7c-e03e-4f44-9d35-804696ec1394" + "405d5c64-82d7-4f03-aace-a7ed618d2606" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220816Z:7a746e7c-e03e-4f44-9d35-804696ec1394" + "WESTUS:20201027T020926Z:405d5c64-82d7-4f03-aace-a7ed618d2606" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:16 GMT" + "Tue, 27 Oct 2020 02:09:26 GMT" ], "Content-Length": [ "1385" @@ -999,26 +861,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4498\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4498\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4498.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4180\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint4180\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4180.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 \"originHostHeader\": null,\r\n \"priority\": 3,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4823?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ4MjM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint9403?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDk0MDM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/photos\",\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"BypassCaching\",\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"operator\": \"Equal\",\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\"\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"cacheBehavior\": \"Override\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\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 \"tags\": {\r\n \"kay1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c9019620-61d0-4813-bce5-a872fd077241" + "45b1e68f-7f81-4088-b7c8-67eb53300315" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1038,13 +900,13 @@ "10" ], "x-ms-request-id": [ - "45814324-fc6f-4709-9eec-7e7566eaf7d7" + "c3939ea7-f6e5-48fb-b448-1ca044782dd5" ], "x-ms-client-request-id": [ - "c9019620-61d0-4813-bce5-a872fd077241" + "45b1e68f-7f81-4088-b7c8-67eb53300315" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/b1e230e3-2271-4015-9404-659829878b3b?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/70667b68-dcae-45ad-bf67-bc99d4bf1b77?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1065,16 +927,16 @@ "97" ], "x-ms-correlation-request-id": [ - "d15f1c0f-f7ab-43c4-bede-c500bb4d875d" + "dec431b4-07db-4ac0-aa39-be2a3eede88f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220820Z:d15f1c0f-f7ab-43c4-bede-c500bb4d875d" + "WESTUS:20201027T020931Z:dec431b4-07db-4ac0-aa39-be2a3eede88f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:20 GMT" + "Tue, 27 Oct 2020 02:09:31 GMT" ], "Content-Length": [ "2127" @@ -1086,20 +948,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4823\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4823\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4823.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"BypassCaching\",\r\n \"originPath\": \"/photos\",\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 \"originHostHeader\": \"www.bing.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"Override\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9403\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint9403\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9403.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"BypassCaching\",\r\n \"originPath\": \"/photos\",\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 \"originHostHeader\": \"www.bing.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"Override\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/b1e230e3-2271-4015-9404-659829878b3b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjFlMjMwZTMtMjI3MS00MDE1LTk0MDQtNjU5ODI5ODc4YjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/70667b68-dcae-45ad-bf67-bc99d4bf1b77?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzA2NjdiNjgtZGNhZS00NWFkLWJmNjctYmM5OWQ0YmYxYjc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1110,10 +972,10 @@ "no-cache" ], "x-ms-request-id": [ - "90a68a3b-ac98-422c-ad5a-5bd061df905e" + "14cc82fa-49d6-45dd-967e-a4bac67dec37" ], "x-ms-client-request-id": [ - "82f292f9-805d-4128-82bf-99b856b6486e" + "be649080-2a19-4fa3-9f0e-13de77e16226" ], "OData-Version": [ "4.0" @@ -1131,19 +993,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-correlation-request-id": [ - "8d04eac5-9206-40f9-b71c-2d82d3183c3c" + "512a71eb-9794-42ca-8ff5-9e320f25c2a7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220831Z:8d04eac5-9206-40f9-b71c-2d82d3183c3c" + "WESTUS:20201027T020941Z:512a71eb-9794-42ca-8ff5-9e320f25c2a7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:30 GMT" + "Tue, 27 Oct 2020 02:09:41 GMT" ], "Content-Length": [ "78" @@ -1159,16 +1021,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/b1e230e3-2271-4015-9404-659829878b3b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjFlMjMwZTMtMjI3MS00MDE1LTk0MDQtNjU5ODI5ODc4YjNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/70667b68-dcae-45ad-bf67-bc99d4bf1b77?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzA2NjdiNjgtZGNhZS00NWFkLWJmNjctYmM5OWQ0YmYxYjc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1179,10 +1041,10 @@ "no-cache" ], "x-ms-request-id": [ - "da9845bc-0755-4f6c-8430-c6fa053d9687" + "0c752451-c56b-4e17-a591-d046b97995b8" ], "x-ms-client-request-id": [ - "799e88ba-d271-488f-931e-58156118bdd7" + "fa600146-62dc-4263-88fb-72fd17a1d800" ], "OData-Version": [ "4.0" @@ -1200,19 +1062,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-correlation-request-id": [ - "f14bf3b8-477b-4f42-89f8-b5308b87c5ea" + "e093250b-45fa-4a28-8baf-92ea7ac4bbdf" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220841Z:f14bf3b8-477b-4f42-89f8-b5308b87c5ea" + "WESTUS:20201027T020951Z:e093250b-45fa-4a28-8baf-92ea7ac4bbdf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:40 GMT" + "Tue, 27 Oct 2020 02:09:51 GMT" ], "Content-Length": [ "77" @@ -1228,16 +1090,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4823?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDQ4MjM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint9403?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDk0MDM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1248,10 +1110,10 @@ "no-cache" ], "x-ms-request-id": [ - "3b051d4a-27bb-476a-b39f-8dfd5b3b0cf3" + "c6d7f252-95cd-4f7e-bdff-7db25b24bc82" ], "x-ms-client-request-id": [ - "8e2c7aa9-480b-4d49-b2af-e2d987cd979b" + "a0c3866b-48b9-48fd-bcf7-45a8aab0baec" ], "OData-Version": [ "4.0" @@ -1272,16 +1134,16 @@ "47" ], "x-ms-correlation-request-id": [ - "b4ddb177-d8f7-46d7-8ec0-f14f59160ec9" + "b550c224-6d9b-44bc-8bfb-114c1733018b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220842Z:b4ddb177-d8f7-46d7-8ec0-f14f59160ec9" + "WESTUS:20201027T020953Z:b550c224-6d9b-44bc-8bfb-114c1733018b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:41 GMT" + "Tue, 27 Oct 2020 02:09:52 GMT" ], "Content-Length": [ "2127" @@ -1293,26 +1155,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4823\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint4823\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4823.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"BypassCaching\",\r\n \"originPath\": \"/photos\",\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 \"originHostHeader\": \"www.bing.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"Override\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9403\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint9403\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9403.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"BypassCaching\",\r\n \"originPath\": \"/photos\",\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 \"originHostHeader\": \"www.bing.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"Override\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint2352?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDIzNTI/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2384?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDIzODQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/dsa-test\",\r\n \"contentTypesToCompress\": [],\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"isCompressionEnabled\": false,\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"NotSet\",\r\n \"probePath\": \"/probe-v.txt\",\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 \"tags\": {\r\n \"kay1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4666dd71-4445-4110-9946-dc0ae0c9ce33" + "93fc9d66-b83d-4d78-8899-f0f05e369ad1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1332,13 +1194,13 @@ "10" ], "x-ms-request-id": [ - "370e6794-0111-469c-a33d-2c36f58e2591" + "b134a41d-ebc2-4b7d-8534-5b058afa295e" ], "x-ms-client-request-id": [ - "4666dd71-4445-4110-9946-dc0ae0c9ce33" + "93fc9d66-b83d-4d78-8899-f0f05e369ad1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/551b715e-c8ce-409f-b632-1e43ff4e9776?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/ba3d9e74-b741-431d-a785-ec3aa31c9a59?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1359,16 +1221,16 @@ "96" ], "x-ms-correlation-request-id": [ - "3d5b25cf-fdfc-4f18-9d39-4ae78ee20d82" + "e3f8d7ed-11ff-46d8-81a2-3452ffbac008" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220846Z:3d5b25cf-fdfc-4f18-9d39-4ae78ee20d82" + "WESTUS:20201027T020957Z:e3f8d7ed-11ff-46d8-81a2-3452ffbac008" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:45 GMT" + "Tue, 27 Oct 2020 02:09:56 GMT" ], "Content-Length": [ "1315" @@ -1380,20 +1242,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2352\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint2352\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2352.azureedge.net\",\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/dsa-test\",\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 \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": \"/probe-v.txt\",\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint2384\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2384\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2384.azureedge.net\",\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/dsa-test\",\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 \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": \"/probe-v.txt\",\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/551b715e-c8ce-409f-b632-1e43ff4e9776?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTUxYjcxNWUtYzhjZS00MDlmLWI2MzItMWU0M2ZmNGU5Nzc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/ba3d9e74-b741-431d-a785-ec3aa31c9a59?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmEzZDllNzQtYjc0MS00MzFkLWE3ODUtZWMzYWEzMWM5YTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1404,10 +1266,10 @@ "no-cache" ], "x-ms-request-id": [ - "86461538-9caa-4cdb-b560-7542ec6c0315" + "9a1d2eaa-28b7-4707-b7ab-7e5e321b41f6" ], "x-ms-client-request-id": [ - "94cbc93c-1c8c-4e64-9fd1-f0f7c6fb9390" + "90130616-f400-4271-b13b-19527207500d" ], "OData-Version": [ "4.0" @@ -1425,19 +1287,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" ], "x-ms-correlation-request-id": [ - "6bef0378-b1e5-47fd-97b4-ca2b7ac9ebde" + "c1a5af0a-2633-40a0-82b9-8c260bd58d1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220856Z:6bef0378-b1e5-47fd-97b4-ca2b7ac9ebde" + "WESTUS:20201027T021007Z:c1a5af0a-2633-40a0-82b9-8c260bd58d1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:08:55 GMT" + "Tue, 27 Oct 2020 02:10:06 GMT" ], "Content-Length": [ "78" @@ -1453,16 +1315,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/551b715e-c8ce-409f-b632-1e43ff4e9776?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTUxYjcxNWUtYzhjZS00MDlmLWI2MzItMWU0M2ZmNGU5Nzc2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/ba3d9e74-b741-431d-a785-ec3aa31c9a59?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmEzZDllNzQtYjc0MS00MzFkLWE3ODUtZWMzYWEzMWM5YTU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1473,10 +1335,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc413230-7f82-47b4-8ab7-12863e51207e" + "82536c02-3e74-401a-94aa-1526f76b902b" ], "x-ms-client-request-id": [ - "c2165b40-5145-4575-b1ba-f7d120a4dadd" + "bf2c4bfc-754c-466e-b3ec-e67030311f6b" ], "OData-Version": [ "4.0" @@ -1494,19 +1356,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11991" ], "x-ms-correlation-request-id": [ - "2ac6ac88-4a61-40fd-b26b-d11853a2ff99" + "4c13dde4-6b25-4151-b968-94d2976e925c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220907Z:2ac6ac88-4a61-40fd-b26b-d11853a2ff99" + "WESTUS:20201027T021017Z:4c13dde4-6b25-4151-b968-94d2976e925c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:07 GMT" + "Tue, 27 Oct 2020 02:10:17 GMT" ], "Content-Length": [ "77" @@ -1522,16 +1384,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint2352?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDIzNTI/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2384?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDIzODQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1542,10 +1404,10 @@ "no-cache" ], "x-ms-request-id": [ - "575363d1-7c6f-42aa-87bf-9b5e7ae73c40" + "ba98e452-fe77-47a1-a557-3a3f18f7ab8d" ], "x-ms-client-request-id": [ - "78973745-2339-40cd-bdff-08e60c34c568" + "d64aebf3-ea81-4802-b6af-87dd8465f92c" ], "OData-Version": [ "4.0" @@ -1566,16 +1428,16 @@ "46" ], "x-ms-correlation-request-id": [ - "d9a20185-0f42-488e-9f49-a26efa77bffa" + "fa5af87c-3e2d-4b50-afc4-5ea6db01c56f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220908Z:d9a20185-0f42-488e-9f49-a26efa77bffa" + "WESTUS:20201027T021018Z:fa5af87c-3e2d-4b50-afc4-5ea6db01c56f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:08 GMT" + "Tue, 27 Oct 2020 02:10:18 GMT" ], "Content-Length": [ "1315" @@ -1587,26 +1449,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2352\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint2352\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2352.azureedge.net\",\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/dsa-test\",\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 \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": \"/probe-v.txt\",\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint2384\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2384\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2384.azureedge.net\",\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/dsa-test\",\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 \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": \"/probe-v.txt\",\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint3458?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDM0NTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint67?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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 \"tags\": {\r\n \"kay1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "418062ae-3837-4337-a978-ea913eadb69d" + "a6f1ca59-ca6a-4b2d-a50f-207227befdc1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1626,13 +1488,13 @@ "10" ], "x-ms-request-id": [ - "a78358e2-a0f7-4ed0-a060-f1070f0606cb" + "2456eab2-a2e8-4728-a270-37e5bf63d558" ], "x-ms-client-request-id": [ - "418062ae-3837-4337-a978-ea913eadb69d" + "a6f1ca59-ca6a-4b2d-a50f-207227befdc1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/fafd0e0d-4893-44ca-80d7-f5a0961babf4?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/14526145-bc71-4a81-97a2-5facf2abcd43?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1653,19 +1515,19 @@ "95" ], "x-ms-correlation-request-id": [ - "5c319a0a-16ba-430a-9fe2-58bd8ddba9b0" + "380ceb0b-cc63-414a-b300-1d6b98fbae5d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220913Z:5c319a0a-16ba-430a-9fe2-58bd8ddba9b0" + "WESTUS:20201027T021024Z:380ceb0b-cc63-414a-b300-1d6b98fbae5d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:13 GMT" + "Tue, 27 Oct 2020 02:10:24 GMT" ], "Content-Length": [ - "1246" + "1240" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1674,20 +1536,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint3458\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3458.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint67\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint67\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint67.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/fafd0e0d-4893-44ca-80d7-f5a0961babf4?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmFmZDBlMGQtNDg5My00NGNhLTgwZDctZjVhMDk2MWJhYmY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/14526145-bc71-4a81-97a2-5facf2abcd43?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTQ1MjYxNDUtYmM3MS00YTgxLTk3YTItNWZhY2YyYWJjZDQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1698,10 +1560,10 @@ "no-cache" ], "x-ms-request-id": [ - "9edd80a3-fdc6-4053-93a5-823b10997be7" + "aae477a0-c323-44b5-8002-b2ee5eea0ca9" ], "x-ms-client-request-id": [ - "c6bbc4d0-2162-47ba-9e75-3e127d986c32" + "f7d17d2e-a9fa-4445-9567-58ce9ca438e2" ], "OData-Version": [ "4.0" @@ -1719,19 +1581,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11990" ], "x-ms-correlation-request-id": [ - "e69f7dfd-2eef-4549-a659-d18eb6dc4e34" + "ac513442-6137-4110-b806-131fc6b89548" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220923Z:e69f7dfd-2eef-4549-a659-d18eb6dc4e34" + "WESTUS:20201027T021035Z:ac513442-6137-4110-b806-131fc6b89548" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:23 GMT" + "Tue, 27 Oct 2020 02:10:34 GMT" ], "Content-Length": [ "78" @@ -1747,16 +1609,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/fafd0e0d-4893-44ca-80d7-f5a0961babf4?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmFmZDBlMGQtNDg5My00NGNhLTgwZDctZjVhMDk2MWJhYmY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/14526145-bc71-4a81-97a2-5facf2abcd43?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTQ1MjYxNDUtYmM3MS00YTgxLTk3YTItNWZhY2YyYWJjZDQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1767,10 +1629,10 @@ "no-cache" ], "x-ms-request-id": [ - "652e179d-e7c9-4ed0-b1e4-f0d6f8bb208e" + "5171e365-0337-4d55-af53-7b4cbc7f2891" ], "x-ms-client-request-id": [ - "cc5bb009-64ff-477a-9ae1-fb11b7d805ef" + "80e93ba0-7328-4192-977e-69996e74f356" ], "OData-Version": [ "4.0" @@ -1788,19 +1650,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11989" ], "x-ms-correlation-request-id": [ - "1a96d369-9630-4515-9fc2-edd4442abf22" + "425116ba-a7c0-47fe-86ef-9e484a65be2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220933Z:1a96d369-9630-4515-9fc2-edd4442abf22" + "WESTUS:20201027T021045Z:425116ba-a7c0-47fe-86ef-9e484a65be2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:33 GMT" + "Tue, 27 Oct 2020 02:10:44 GMT" ], "Content-Length": [ "77" @@ -1816,16 +1678,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint3458?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDM0NTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint67?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1836,10 +1698,10 @@ "no-cache" ], "x-ms-request-id": [ - "4faa5e67-418b-4987-adb0-8d6f8a4c7874" + "ffda4ac3-d9ca-4c61-bac6-7d33ee106f17" ], "x-ms-client-request-id": [ - "702b8f14-81f0-48e3-b580-bb1c2c08d95c" + "4bc848ba-ed59-469b-a0a7-d07ef02cd574" ], "OData-Version": [ "4.0" @@ -1860,19 +1722,19 @@ "45" ], "x-ms-correlation-request-id": [ - "36827329-aa8e-45e1-8749-aa74231a9052" + "a182eec1-3909-4244-bdd6-023730da53b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220934Z:36827329-aa8e-45e1-8749-aa74231a9052" + "WESTUS:20201027T021046Z:a182eec1-3909-4244-bdd6-023730da53b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:34 GMT" + "Tue, 27 Oct 2020 02:10:45 GMT" ], "Content-Length": [ - "1246" + "1240" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1881,26 +1743,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint3458\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3458.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint67\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint67\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint67.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint974?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDk3ND9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2440?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDI0NDA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"operator\": \"Equal\",\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\"\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\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": [ - "f266c145-e981-4fd3-aeb4-85139b31e1cb" + "8df6c0e8-6827-4ab6-846b-ba9fb03e5ea9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1920,13 +1782,13 @@ "10" ], "x-ms-request-id": [ - "d6e9b7fc-5a2d-4092-938b-f01740c184be" + "5bcd16ae-31e5-4b53-93bf-90052989a7df" ], "x-ms-client-request-id": [ - "f266c145-e981-4fd3-aeb4-85139b31e1cb" + "8df6c0e8-6827-4ab6-846b-ba9fb03e5ea9" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/975aed39-67e2-4831-9892-c4a67d9c23e1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/1c6c664c-5877-495d-8ed1-2a25c91ad645?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1947,19 +1809,19 @@ "94" ], "x-ms-correlation-request-id": [ - "ea5af041-59b9-4aa8-ac37-80c73d1597d7" + "5dc86390-ef1f-4f11-b424-c962678eb48b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220938Z:ea5af041-59b9-4aa8-ac37-80c73d1597d7" + "WESTUS:20201027T021050Z:5dc86390-ef1f-4f11-b424-c962678eb48b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:38 GMT" + "Tue, 27 Oct 2020 02:10:50 GMT" ], "Content-Length": [ - "2048" + "2051" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1968,20 +1830,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint974\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint974\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint974.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": null,\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2440\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2440.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": null,\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/975aed39-67e2-4831-9892-c4a67d9c23e1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTc1YWVkMzktNjdlMi00ODMxLTk4OTItYzRhNjdkOWMyM2UxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/1c6c664c-5877-495d-8ed1-2a25c91ad645?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMWM2YzY2NGMtNTg3Ny00OTVkLThlZDEtMmEyNWM5MWFkNjQ1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1992,10 +1854,10 @@ "no-cache" ], "x-ms-request-id": [ - "a814c5e6-102c-4025-9115-c1c66caa111c" + "4d815d14-8054-49bd-b5bb-9c27c6d41f72" ], "x-ms-client-request-id": [ - "595b060d-2271-4305-b371-31f285ee27b7" + "e2aa5d89-9057-416e-8f74-2226b4eee24b" ], "OData-Version": [ "4.0" @@ -2013,19 +1875,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11988" ], "x-ms-correlation-request-id": [ - "47f75b71-99bf-4b2c-a654-1b1385109f2b" + "4ab5ae0c-c7ee-4e9b-9bbd-f6da187f8dde" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220949Z:47f75b71-99bf-4b2c-a654-1b1385109f2b" + "WESTUS:20201027T021101Z:4ab5ae0c-c7ee-4e9b-9bbd-f6da187f8dde" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:48 GMT" + "Tue, 27 Oct 2020 02:11:00 GMT" ], "Content-Length": [ "78" @@ -2041,16 +1903,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/operationresults/975aed39-67e2-4831-9892-c4a67d9c23e1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTc1YWVkMzktNjdlMi00ODMxLTk4OTItYzRhNjdkOWMyM2UxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/operationresults/1c6c664c-5877-495d-8ed1-2a25c91ad645?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMWM2YzY2NGMtNTg3Ny00OTVkLThlZDEtMmEyNWM5MWFkNjQ1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2061,10 +1923,10 @@ "no-cache" ], "x-ms-request-id": [ - "d6b1a2e5-8429-4d88-9b3a-4b9248f22591" + "d6494e40-c6ab-4fdb-a23c-e75408e6208a" ], "x-ms-client-request-id": [ - "5df03c67-1258-45a7-9679-a01688416f92" + "3e44fcd3-e1ef-4788-ade3-43da5e584381" ], "OData-Version": [ "4.0" @@ -2082,19 +1944,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11987" ], "x-ms-correlation-request-id": [ - "2ba14d34-4124-49dc-a5de-66623656132c" + "c158209f-8596-4d68-8d0f-fed8e4dbe3ac" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220959Z:2ba14d34-4124-49dc-a5de-66623656132c" + "WESTUS:20201027T021111Z:c158209f-8596-4d68-8d0f-fed8e4dbe3ac" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:09:59 GMT" + "Tue, 27 Oct 2020 02:11:10 GMT" ], "Content-Length": [ "77" @@ -2110,16 +1972,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint974?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDk3ND9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2440?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDI0NDA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2130,10 +1992,10 @@ "no-cache" ], "x-ms-request-id": [ - "6b2b8c95-047e-4b3a-bf60-9fc47266fd1f" + "ca8beb99-8a06-49fb-bab6-cff5ef4c8fa8" ], "x-ms-client-request-id": [ - "a70d5f92-3cfc-442b-a6f3-b12a3a25f158" + "69815186-81df-4d86-9e22-facce93dca80" ], "OData-Version": [ "4.0" @@ -2154,19 +2016,19 @@ "44" ], "x-ms-correlation-request-id": [ - "94c5384e-e49d-443c-85a1-15af2933662d" + "948d9427-dc69-4615-9689-089697ce6f2e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221000Z:94c5384e-e49d-443c-85a1-15af2933662d" + "WESTUS:20201027T021112Z:948d9427-dc69-4615-9689-089697ce6f2e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:00 GMT" + "Tue, 27 Oct 2020 02:11:11 GMT" ], "Content-Length": [ - "2048" + "2051" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -2175,26 +2037,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint974\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint974\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint974.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": null,\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint2440\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2440.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\",\r\n \"operator\": \"Equal\",\r\n \"negateCondition\": false,\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"transforms\": []\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": null,\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2047/providers/Microsoft.Cdn/profiles/profile6347/endpoints/endpoint3259?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3L2VuZHBvaW50cy9lbmRwb2ludDMyNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9526/providers/Microsoft.Cdn/profiles/profile6578/endpoints/endpoint9357?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTc4L2VuZHBvaW50cy9lbmRwb2ludDkzNTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"name\": \"rule1\",\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"operator\": \"Equal\",\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\"\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n },\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": [ - "7d4decce-eba5-48ae-a938-b052d0ec8f62" + "453feb9e-5000-418f-862e-000bacdc8203" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2211,10 +2073,10 @@ "no-cache" ], "x-ms-request-id": [ - "b42eaaae-ca87-491d-80df-e643e3aa1dda" + "f07567f5-c038-412a-8320-f24eefc35655" ], "x-ms-client-request-id": [ - "7d4decce-eba5-48ae-a938-b052d0ec8f62" + "453feb9e-5000-418f-862e-000bacdc8203" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2232,16 +2094,16 @@ "93" ], "x-ms-correlation-request-id": [ - "c45d2665-dd3b-446e-9f0c-133a950ce8f9" + "966e57c4-86ea-4083-ba07-1c0a4fea47e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221001Z:c45d2665-dd3b-446e-9f0c-133a950ce8f9" + "WESTUS:20201027T021114Z:966e57c4-86ea-4083-ba07-1c0a4fea47e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:01 GMT" + "Tue, 27 Oct 2020 02:11:13 GMT" ], "Content-Length": [ "125" @@ -2260,21 +2122,21 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2047?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyMDQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9526?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NTI2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "20b692b3-e4ec-426a-bfcd-9dc50fd092af" + "22325663-b4c3-48a0-b905-74e45898b305" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2286,7 +2148,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2295,13 +2157,13 @@ "14999" ], "x-ms-request-id": [ - "2a655440-3e2b-48b8-9bf3-5d04f9217e92" + "a813ba3c-b047-4daa-815c-814da77b4a1e" ], "x-ms-correlation-request-id": [ - "2a655440-3e2b-48b8-9bf3-5d04f9217e92" + "a813ba3c-b047-4daa-815c-814da77b4a1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221002Z:2a655440-3e2b-48b8-9bf3-5d04f9217e92" + "WESTUS:20201027T021114Z:a813ba3c-b047-4daa-815c-814da77b4a1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2310,7 +2172,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:01 GMT" + "Tue, 27 Oct 2020 02:11:13 GMT" ], "Expires": [ "-1" @@ -2323,15 +2185,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2343,7 +2205,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2352,13 +2214,13 @@ "11999" ], "x-ms-request-id": [ - "f6915253-0745-4e66-9f74-acc18899f51b" + "236a5a6c-fe1b-49f8-83f0-356d9d123d7f" ], "x-ms-correlation-request-id": [ - "f6915253-0745-4e66-9f74-acc18899f51b" + "236a5a6c-fe1b-49f8-83f0-356d9d123d7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221017Z:f6915253-0745-4e66-9f74-acc18899f51b" + "WESTUS:20201027T021129Z:236a5a6c-fe1b-49f8-83f0-356d9d123d7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2367,7 +2229,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:16 GMT" + "Tue, 27 Oct 2020 02:11:28 GMT" ], "Expires": [ "-1" @@ -2380,15 +2242,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2400,7 +2262,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2409,13 +2271,13 @@ "11998" ], "x-ms-request-id": [ - "d4215b3b-3c75-43b5-bd0f-ae6a51f523ee" + "e9cb9bcc-c6a3-408c-b430-0b8ee16bedb7" ], "x-ms-correlation-request-id": [ - "d4215b3b-3c75-43b5-bd0f-ae6a51f523ee" + "e9cb9bcc-c6a3-408c-b430-0b8ee16bedb7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221032Z:d4215b3b-3c75-43b5-bd0f-ae6a51f523ee" + "WESTUS:20201027T021144Z:e9cb9bcc-c6a3-408c-b430-0b8ee16bedb7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,7 +2286,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:31 GMT" + "Tue, 27 Oct 2020 02:11:43 GMT" ], "Expires": [ "-1" @@ -2437,15 +2299,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2457,7 +2319,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2466,13 +2328,13 @@ "11997" ], "x-ms-request-id": [ - "c1ac71cf-6afd-4416-a633-8a81d181c9ba" + "542f8420-b2ef-47d9-8f94-97b0c07b431d" ], "x-ms-correlation-request-id": [ - "c1ac71cf-6afd-4416-a633-8a81d181c9ba" + "542f8420-b2ef-47d9-8f94-97b0c07b431d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221047Z:c1ac71cf-6afd-4416-a633-8a81d181c9ba" + "WESTUS:20201027T021159Z:542f8420-b2ef-47d9-8f94-97b0c07b431d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2481,7 +2343,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:10:46 GMT" + "Tue, 27 Oct 2020 02:11:58 GMT" ], "Expires": [ "-1" @@ -2494,15 +2356,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2514,22 +2376,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11996" ], "x-ms-request-id": [ - "834e2d30-ced6-404e-ad34-ba828dbbb993" + "bad9e2cb-2b71-47ac-8dc4-8a200a6a18b8" ], "x-ms-correlation-request-id": [ - "834e2d30-ced6-404e-ad34-ba828dbbb993" + "bad9e2cb-2b71-47ac-8dc4-8a200a6a18b8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221102Z:834e2d30-ced6-404e-ad34-ba828dbbb993" + "WESTUS:20201027T021214Z:bad9e2cb-2b71-47ac-8dc4-8a200a6a18b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2538,7 +2400,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:11:01 GMT" + "Tue, 27 Oct 2020 02:12:13 GMT" ], "Expires": [ "-1" @@ -2551,15 +2413,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2571,22 +2433,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11995" ], "x-ms-request-id": [ - "9846dd75-6a59-4927-9944-e27fe0bcbb2b" + "e016b8a0-2a9b-41d5-9913-25f6188ef272" ], "x-ms-correlation-request-id": [ - "9846dd75-6a59-4927-9944-e27fe0bcbb2b" + "e016b8a0-2a9b-41d5-9913-25f6188ef272" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221117Z:9846dd75-6a59-4927-9944-e27fe0bcbb2b" + "WESTUS:20201027T021229Z:e016b8a0-2a9b-41d5-9913-25f6188ef272" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2595,7 +2457,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:11:16 GMT" + "Tue, 27 Oct 2020 02:12:29 GMT" ], "Expires": [ "-1" @@ -2608,15 +2470,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2628,22 +2490,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11994" ], "x-ms-request-id": [ - "e450176d-cf6c-44b0-a598-b4b0f96fd45f" + "32e8ea31-3b1f-4b5d-afc6-ee64f232626c" ], "x-ms-correlation-request-id": [ - "e450176d-cf6c-44b0-a598-b4b0f96fd45f" + "32e8ea31-3b1f-4b5d-afc6-ee64f232626c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221132Z:e450176d-cf6c-44b0-a598-b4b0f96fd45f" + "WESTUS:20201027T021244Z:32e8ea31-3b1f-4b5d-afc6-ee64f232626c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2652,7 +2514,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:11:32 GMT" + "Tue, 27 Oct 2020 02:12:44 GMT" ], "Expires": [ "-1" @@ -2665,15 +2527,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2685,22 +2547,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11993" ], "x-ms-request-id": [ - "b234452f-28df-4ab7-92f7-bab2c047b018" + "6b606aae-7a36-4059-909b-7253b90143e1" ], "x-ms-correlation-request-id": [ - "b234452f-28df-4ab7-92f7-bab2c047b018" + "6b606aae-7a36-4059-909b-7253b90143e1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221147Z:b234452f-28df-4ab7-92f7-bab2c047b018" + "WESTUS:20201027T021259Z:6b606aae-7a36-4059-909b-7253b90143e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2709,7 +2571,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:11:47 GMT" + "Tue, 27 Oct 2020 02:12:59 GMT" ], "Expires": [ "-1" @@ -2722,15 +2584,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2742,22 +2604,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11992" ], "x-ms-request-id": [ - "14a2250a-06b6-4615-9a4a-110b1096fc04" + "90e17f32-ad5e-4cdb-8cc9-7d413cccb62e" ], "x-ms-correlation-request-id": [ - "14a2250a-06b6-4615-9a4a-110b1096fc04" + "90e17f32-ad5e-4cdb-8cc9-7d413cccb62e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221202Z:14a2250a-06b6-4615-9a4a-110b1096fc04" + "WESTUS:20201027T021314Z:90e17f32-ad5e-4cdb-8cc9-7d413cccb62e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2766,7 +2628,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:02 GMT" + "Tue, 27 Oct 2020 02:13:14 GMT" ], "Expires": [ "-1" @@ -2779,15 +2641,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2799,22 +2661,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11991" ], "x-ms-request-id": [ - "2dbe19c9-8d0b-4cba-8d3e-e4fba6c8b09c" + "c75c42f0-e0fc-4294-9a6a-5bb317bca63d" ], "x-ms-correlation-request-id": [ - "2dbe19c9-8d0b-4cba-8d3e-e4fba6c8b09c" + "c75c42f0-e0fc-4294-9a6a-5bb317bca63d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221217Z:2dbe19c9-8d0b-4cba-8d3e-e4fba6c8b09c" + "WESTUS:20201027T021329Z:c75c42f0-e0fc-4294-9a6a-5bb317bca63d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2823,7 +2685,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:17 GMT" + "Tue, 27 Oct 2020 02:13:29 GMT" ], "Expires": [ "-1" @@ -2836,15 +2698,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2856,22 +2718,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-request-id": [ - "8df981bf-f3a7-4d36-b017-605ec5992b95" + "a7d62a7e-326d-49ef-8398-9e3e88f1d83c" ], "x-ms-correlation-request-id": [ - "8df981bf-f3a7-4d36-b017-605ec5992b95" + "a7d62a7e-326d-49ef-8398-9e3e88f1d83c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221232Z:8df981bf-f3a7-4d36-b017-605ec5992b95" + "WESTUS:20201027T021344Z:a7d62a7e-326d-49ef-8398-9e3e88f1d83c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2880,7 +2742,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:32 GMT" + "Tue, 27 Oct 2020 02:13:44 GMT" ], "Expires": [ "-1" @@ -2893,15 +2755,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2913,16 +2775,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11989" ], "x-ms-request-id": [ - "e3fcbf8a-8958-426a-abf7-471b8a8a8eaa" + "8d95edd5-605c-4fbb-a814-17ae9bf9d1ce" ], "x-ms-correlation-request-id": [ - "e3fcbf8a-8958-426a-abf7-471b8a8a8eaa" + "8d95edd5-605c-4fbb-a814-17ae9bf9d1ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221247Z:e3fcbf8a-8958-426a-abf7-471b8a8a8eaa" + "WESTUS:20201027T021400Z:8d95edd5-605c-4fbb-a814-17ae9bf9d1ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2931,7 +2793,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:47 GMT" + "Tue, 27 Oct 2020 02:13:59 GMT" ], "Expires": [ "-1" @@ -2944,15 +2806,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjA0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNakEwTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTUyNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVFV5TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2964,16 +2826,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11988" ], "x-ms-request-id": [ - "25aef12a-016a-414a-b567-527f9e89c348" + "f66402b8-fdec-4ecf-8771-29637e228140" ], "x-ms-correlation-request-id": [ - "25aef12a-016a-414a-b567-527f9e89c348" + "f66402b8-fdec-4ecf-8771-29637e228140" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221247Z:25aef12a-016a-414a-b567-527f9e89c348" + "WESTUS:20201027T021400Z:f66402b8-fdec-4ecf-8771-29637e228140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2982,7 +2844,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:12:47 GMT" + "Tue, 27 Oct 2020 02:13:59 GMT" ], "Expires": [ "-1" @@ -2997,18 +2859,18 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup2047" + "cdnResourceGroup9526" ], "EndpointCreateTest": [ - "profile6347", - "endpoint4498", - "endpoint4823", - "endpoint2352", - "endpoint3458", - "endpoint974", - "endpoint3259", - "endpoint6069", - "endpoint9654" + "profile6578", + "endpoint4180", + "endpoint9403", + "endpoint2384", + "endpoint67", + "endpoint2440", + "endpoint9357", + "endpoint2925", + "endpoint5383" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointDeleteTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointDeleteTest.json index 3459a88bc37a4..a57786f15f8ca 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointDeleteTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointDeleteTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a9165177-6431-4ca5-9997-a34bd5df5e00" + "1f61415c-5293-415e-bce8-f90fde6ec913" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "867a8108-9f51-458d-8661-616fcf905533" + "6c671f6d-1878-47c0-9403-1d230434db81" ], "x-ms-correlation-request-id": [ - "867a8108-9f51-458d-8661-616fcf905533" + "6c671f6d-1878-47c0-9403-1d230434db81" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215037Z:867a8108-9f51-458d-8661-616fcf905533" + "WESTUS:20201027T015209Z:6c671f6d-1878-47c0-9403-1d230434db81" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:50:37 GMT" + "Tue, 27 Oct 2020 01:52:08 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155\",\r\n \"name\": \"cdnResourceGroup5155\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980\",\r\n \"name\": \"cdnResourceGroup8980\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "e81ba772-1a1a-49d6-bc23-e37a4c51102b" + "ba9a53f2-122c-4fcb-bab5-c5e3568341a4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "8adedada-07d7-42b6-af29-efd9dcf38df3" + "2979877a-7037-470d-8123-d5a55946dd44" ], "x-ms-client-request-id": [ - "e81ba772-1a1a-49d6-bc23-e37a4c51102b" + "ba9a53f2-122c-4fcb-bab5-c5e3568341a4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/81431489-f4d9-4a53-b828-f3d5da38d5c1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/36bd9e57-e2fc-4eb3-9889-63823ad87bbc?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "bdcddc2b-9534-4afd-a4e9-65e96ae1a7a5" + "afe7337b-90e1-4d90-bd4d-e50819761a5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215044Z:bdcddc2b-9534-4afd-a4e9-65e96ae1a7a5" + "WESTUS:20201027T015212Z:afe7337b-90e1-4d90-bd4d-e50819761a5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:50:44 GMT" + "Tue, 27 Oct 2020 01:52:11 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5005\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile1617\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/81431489-f4d9-4a53-b828-f3d5da38d5c1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODE0MzE0ODktZjRkOS00YTUzLWI4MjgtZjNkNWRhMzhkNWMxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/36bd9e57-e2fc-4eb3-9889-63823ad87bbc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZiZDllNTctZTJmYy00ZWIzLTk4ODktNjM4MjNhZDg3YmJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "a47ce3be-79dc-4de6-8c05-e7793a612340" + "d7660e1f-b84b-4e49-bffe-a2ff64c66cff" ], "x-ms-client-request-id": [ - "d3afffcf-d6b4-42a3-9d67-e54c6adf822c" + "764b2831-c232-45c8-a95e-4d6dcf5207e8" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "ca1289be-c6c4-4011-b1d0-c754d42a0a52" + "43835c93-c083-41e4-8975-1958d08cf930" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215055Z:ca1289be-c6c4-4011-b1d0-c754d42a0a52" + "WESTUS:20201027T015222Z:43835c93-c083-41e4-8975-1958d08cf930" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:50:55 GMT" + "Tue, 27 Oct 2020 01:52:21 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/81431489-f4d9-4a53-b828-f3d5da38d5c1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODE0MzE0ODktZjRkOS00YTUzLWI4MjgtZjNkNWRhMzhkNWMxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/36bd9e57-e2fc-4eb3-9889-63823ad87bbc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZiZDllNTctZTJmYy00ZWIzLTk4ODktNjM4MjNhZDg3YmJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "ccdd62ef-b854-472e-b64d-6e8ce18cc335" + "ed6259b3-6ae6-45c5-b367-b0e780d0200c" ], "x-ms-client-request-id": [ - "0194be2d-b991-49e7-919b-fca6b10ccdc4" + "82e5e965-31ae-4f9e-8a0d-4693bc839904" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "eb54571f-dd18-4f1a-8967-95ac97ffa951" + "1c9d3f5e-88ba-421d-9ab7-16727a03c58f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215105Z:eb54571f-dd18-4f1a-8967-95ac97ffa951" + "WESTUS:20201027T015233Z:1c9d3f5e-88ba-421d-9ab7-16727a03c58f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:05 GMT" + "Tue, 27 Oct 2020 01:52:33 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/81431489-f4d9-4a53-b828-f3d5da38d5c1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODE0MzE0ODktZjRkOS00YTUzLWI4MjgtZjNkNWRhMzhkNWMxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/36bd9e57-e2fc-4eb3-9889-63823ad87bbc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZiZDllNTctZTJmYy00ZWIzLTk4ODktNjM4MjNhZDg3YmJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "6a741b14-1ed4-46b4-ac23-918cce5b8fb8" + "7f53c353-2d4a-4aa2-ba58-d86ac88ee5c3" ], "x-ms-client-request-id": [ - "612865d5-4c6b-4a05-8b73-f495752101bd" + "e069942b-d359-4b35-a1f8-77377a2b2722" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "0804d114-2972-4df7-8835-d03424e758cd" + "4bfe3535-d187-40c1-a903-71ce52a0d27f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215115Z:0804d114-2972-4df7-8835-d03424e758cd" + "WESTUS:20201027T015243Z:4bfe3535-d187-40c1-a903-71ce52a0d27f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:15 GMT" + "Tue, 27 Oct 2020 01:52:43 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "199be494-2f0b-4854-b0aa-997cb0dd8c59" + "821e75d0-789a-4ff0-b147-c3f397c27661" ], "x-ms-client-request-id": [ - "58a45ac8-fe97-4bb9-b0f9-a86e1e058b6b" + "494d82ed-5b34-44e5-bd94-46e292f7e8ff" ], "OData-Version": [ "4.0" @@ -405,16 +405,16 @@ "49" ], "x-ms-correlation-request-id": [ - "f992708b-7c0a-47a8-ab6b-d8e9a7c41bad" + "3bc790c4-ef08-44e8-b3f7-fa40e7c982be" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215116Z:f992708b-7c0a-47a8-ab6b-d8e9a7c41bad" + "WESTUS:20201027T015244Z:3bc790c4-ef08-44e8-b3f7-fa40e7c982be" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:16 GMT" + "Tue, 27 Oct 2020 01:52:44 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5005\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile1617\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDI0Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDQ5Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "f8c92bdc-97a4-4ffa-9c04-a8e2d46821d9" + "24989e87-2a55-435f-82a9-86a2d029a2ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +465,13 @@ "10" ], "x-ms-request-id": [ - "76b31187-eaa4-46cc-8f2a-af510c16f3bc" + "dc9872dd-997b-43ec-b8aa-d92c21f89655" ], "x-ms-client-request-id": [ - "f8c92bdc-97a4-4ffa-9c04-a8e2d46821d9" + "24989e87-2a55-435f-82a9-86a2d029a2ae" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/0600a4a4-ecb6-4d6d-944a-aa305a728aee?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/e33e8db5-2465-4e4d-aff1-f00a3080a9cd?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -492,16 +492,16 @@ "99" ], "x-ms-correlation-request-id": [ - "b9150f94-e0e5-4532-b3a7-55f8a2418de8" + "f5116b5e-8761-4766-b557-83fd3d3ce98e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215120Z:b9150f94-e0e5-4532-b3a7-55f8a2418de8" + "WESTUS:20201027T015248Z:f5116b5e-8761-4766-b557-83fd3d3ce98e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:20 GMT" + "Tue, 27 Oct 2020 01:52:48 GMT" ], "Content-Length": [ "1234" @@ -513,20 +513,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2428\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2428.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4978.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/0600a4a4-ecb6-4d6d-944a-aa305a728aee?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDYwMGE0YTQtZWNiNi00ZDZkLTk0NGEtYWEzMDVhNzI4YWVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/e33e8db5-2465-4e4d-aff1-f00a3080a9cd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTMzZThkYjUtMjQ2NS00ZTRkLWFmZjEtZjAwYTMwODBhOWNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "758c3629-cb69-4c67-a730-b4ba4ce9f6e1" + "b675067d-68c7-46d4-b748-a5f155aaea32" ], "x-ms-client-request-id": [ - "16253e08-12c8-4f40-8404-a7562608ab96" + "7eb5b35f-fb06-46de-9745-28bdd816ec6e" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "d4068761-d0b1-4810-bcca-ec0fbdce5649" + "3bb4c4f3-c485-4407-878d-3eb8db5318de" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215130Z:d4068761-d0b1-4810-bcca-ec0fbdce5649" + "WESTUS:20201027T015258Z:3bb4c4f3-c485-4407-878d-3eb8db5318de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:30 GMT" + "Tue, 27 Oct 2020 01:52:58 GMT" ], "Content-Length": [ "78" @@ -586,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/0600a4a4-ecb6-4d6d-944a-aa305a728aee?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDYwMGE0YTQtZWNiNi00ZDZkLTk0NGEtYWEzMDVhNzI4YWVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/e33e8db5-2465-4e4d-aff1-f00a3080a9cd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTMzZThkYjUtMjQ2NS00ZTRkLWFmZjEtZjAwYTMwODBhOWNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "d23dd9cd-846e-40c7-8ff7-2f1f98710fd8" + "296cbdc5-217d-453c-aedb-9324e3cc9228" ], "x-ms-client-request-id": [ - "8e8f69c0-6bde-4267-8e48-28d989621362" + "0d1df328-a7f6-4921-ad70-094b74bf4a67" ], "OData-Version": [ "4.0" @@ -630,16 +630,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "50fe4a8a-7036-4cae-8eed-67ee9f5de639" + "837b3957-3cbf-4001-9037-c17156305b91" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215141Z:50fe4a8a-7036-4cae-8eed-67ee9f5de639" + "WESTUS:20201027T015309Z:837b3957-3cbf-4001-9037-c17156305b91" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:40 GMT" + "Tue, 27 Oct 2020 01:53:08 GMT" ], "Content-Length": [ "77" @@ -655,16 +655,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDI0Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDQ5Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +675,10 @@ "no-cache" ], "x-ms-request-id": [ - "2c3d970e-e814-4651-8924-0d6a43dc4646" + "e9135975-f929-4a38-bef4-a3b7a2a6ec30" ], "x-ms-client-request-id": [ - "184d637c-5de8-4e21-837d-cc9ba2fac6ca" + "e71e684c-a143-458a-b3d9-4d264cf4d97b" ], "OData-Version": [ "4.0" @@ -699,16 +699,16 @@ "49" ], "x-ms-correlation-request-id": [ - "9ce08bbe-08fa-4f73-a94f-0ebec58396ec" + "43f2ad3d-2715-4f86-8cb2-f380d619d95f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215142Z:9ce08bbe-08fa-4f73-a94f-0ebec58396ec" + "WESTUS:20201027T015310Z:43f2ad3d-2715-4f86-8cb2-f380d619d95f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:41 GMT" + "Tue, 27 Oct 2020 01:53:09 GMT" ], "Content-Length": [ "1234" @@ -720,26 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2428\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2428.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4978.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4e8fe449-cee7-44be-9e9c-e1b7f8ec432e" + "57fec4de-648a-409b-81be-7c8d97f468cf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -750,10 +750,10 @@ "no-cache" ], "x-ms-request-id": [ - "c43ecdd5-a003-454b-976c-9491d69aa19b" + "851a4c18-1af3-4bde-b585-b761807227ee" ], "x-ms-client-request-id": [ - "4e8fe449-cee7-44be-9e9c-e1b7f8ec432e" + "57fec4de-648a-409b-81be-7c8d97f468cf" ], "OData-Version": [ "4.0" @@ -774,16 +774,16 @@ "48" ], "x-ms-correlation-request-id": [ - "977d3ce5-2b1c-4e5c-aa81-06d3476a31de" + "a66e3a8f-7847-4e10-819e-5a9ca96ea407" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215143Z:977d3ce5-2b1c-4e5c-aa81-06d3476a31de" + "WESTUS:20201027T015311Z:a66e3a8f-7847-4e10-819e-5a9ca96ea407" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:42 GMT" + "Tue, 27 Oct 2020 01:53:11 GMT" ], "Content-Length": [ "1350" @@ -795,26 +795,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint2428\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2428.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint4978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4978.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f58932b8-4d00-4268-84bb-2f75e405f4a0" + "e247686b-3db0-4ea7-a248-b184967aae2b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -825,10 +825,10 @@ "no-cache" ], "x-ms-request-id": [ - "eac10021-29d4-4ed0-8107-86769bf3bd0d" + "8e41fdb0-a495-4705-9e4a-a61e6eacf22b" ], "x-ms-client-request-id": [ - "f58932b8-4d00-4268-84bb-2f75e405f4a0" + "e247686b-3db0-4ea7-a248-b184967aae2b" ], "OData-Version": [ "4.0" @@ -849,16 +849,16 @@ "47" ], "x-ms-correlation-request-id": [ - "a1f6edb1-fa06-4083-8d10-cb767ba17098" + "697dc6b1-839c-4e6e-aaf5-4e59d12f7ccb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215159Z:a1f6edb1-fa06-4083-8d10-cb767ba17098" + "WESTUS:20201027T015339Z:697dc6b1-839c-4e6e-aaf5-4e59d12f7ccb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:58 GMT" + "Tue, 27 Oct 2020 01:53:39 GMT" ], "Content-Length": [ "28" @@ -874,22 +874,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "528f4265-5f49-45b9-bad4-2952d995d048" + "ce4a18df-b9cb-4b06-b560-f33fdd1a90c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -900,10 +900,10 @@ "no-cache" ], "x-ms-request-id": [ - "5c910eed-fb2e-4777-b047-cc78cd173646" + "299357da-4d37-407d-bd06-8582802bca83" ], "x-ms-client-request-id": [ - "528f4265-5f49-45b9-bad4-2952d995d048" + "ce4a18df-b9cb-4b06-b560-f33fdd1a90c7" ], "OData-Version": [ "4.0" @@ -924,16 +924,16 @@ "46" ], "x-ms-correlation-request-id": [ - "50242505-7d94-4ef3-8b56-134c623b2b7b" + "b2f83b90-5e4e-47e8-a2fa-a7f9f67aaeea" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215329Z:50242505-7d94-4ef3-8b56-134c623b2b7b" + "WESTUS:20201027T015510Z:b2f83b90-5e4e-47e8-a2fa-a7f9f67aaeea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:29 GMT" + "Tue, 27 Oct 2020 01:55:10 GMT" ], "Content-Length": [ "28" @@ -949,22 +949,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDI0Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDQ5Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77803d13-04ff-4284-8411-e3cd8830072d" + "5345c921-8931-4132-97fd-42c969107408" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -975,19 +975,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/7c489947-22ab-4ab3-a249-5341e1d525d3/profileresults/profile5005/endpointresults/endpoint2428?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/b6f98cae-0665-438e-8145-a2026e7c6f9a/profileresults/profile1617/endpointresults/endpoint4978?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "d9e2e7d1-5903-40b4-86d1-4d33814638d5" + "9ade6cb2-7e31-4bea-9da4-2ea019b2ab8c" ], "x-ms-client-request-id": [ - "77803d13-04ff-4284-8411-e3cd8830072d" + "5345c921-8931-4132-97fd-42c969107408" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/7c489947-22ab-4ab3-a249-5341e1d525d3?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/b6f98cae-0665-438e-8145-a2026e7c6f9a?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1005,16 +1005,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "87cd2bab-afd0-46e8-8493-8c20fce42a0f" + "1bb5888d-02d8-43f3-a268-587e350364f0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215144Z:87cd2bab-afd0-46e8-8493-8c20fce42a0f" + "WESTUS:20201027T015313Z:1bb5888d-02d8-43f3-a268-587e350364f0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:44 GMT" + "Tue, 27 Oct 2020 01:53:12 GMT" ], "Expires": [ "-1" @@ -1027,22 +1027,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint2428?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDI0Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint4978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDQ5Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f5a859bf-1c33-4096-beef-3f9ae83ea8e3" + "d0c2dd8d-1e25-46bc-a2b4-8def2eb41f11" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1053,10 +1053,10 @@ "no-cache" ], "x-ms-request-id": [ - "6133e397-fc90-457d-bfb1-89807542f9b4" + "fd57fa34-f606-4f9a-8d5a-be52df0a9ad5" ], "x-ms-client-request-id": [ - "f5a859bf-1c33-4096-beef-3f9ae83ea8e3" + "d0c2dd8d-1e25-46bc-a2b4-8def2eb41f11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,16 +1074,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "c0ccfdcb-2095-4f23-8a38-75298f6b31d7" + "551bbf69-4dee-443c-abbc-7fe1e4d52578" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215158Z:c0ccfdcb-2095-4f23-8a38-75298f6b31d7" + "WESTUS:20201027T015338Z:551bbf69-4dee-443c-abbc-7fe1e4d52578" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:58 GMT" + "Tue, 27 Oct 2020 01:53:38 GMT" ], "Expires": [ "-1" @@ -1093,16 +1093,16 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/7c489947-22ab-4ab3-a249-5341e1d525d3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2M0ODk5NDctMjJhYi00YWIzLWEyNDktNTM0MWUxZDUyNWQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/b6f98cae-0665-438e-8145-a2026e7c6f9a?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjZmOThjYWUtMDY2NS00MzhlLTgxNDUtYTIwMjZlN2M2ZjlhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1113,10 +1113,10 @@ "no-cache" ], "x-ms-request-id": [ - "f72df400-f371-4a11-8e98-a4301695043a" + "c0f2bb2f-9e3c-4c59-a877-c1bfffb2b373" ], "x-ms-client-request-id": [ - "42775ea0-319e-4b88-a660-d85a436b7b54" + "d58be9cb-a4a4-4e5a-aa05-45e6c98e34f2" ], "OData-Version": [ "4.0" @@ -1137,16 +1137,85 @@ "11994" ], "x-ms-correlation-request-id": [ - "63539a84-148b-48b2-8237-4cfd008098aa" + "31e2ae00-fe73-495e-9240-16cd65249535" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215155Z:63539a84-148b-48b2-8237-4cfd008098aa" + "WESTUS:20201027T015323Z:31e2ae00-fe73-495e-9240-16cd65249535" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:54 GMT" + "Tue, 27 Oct 2020 01:53:23 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/b6f98cae-0665-438e-8145-a2026e7c6f9a?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjZmOThjYWUtMDY2NS00MzhlLTgxNDUtYTIwMjZlN2M2ZjlhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "61aaab54-c962-4c98-9821-58209e34a724" + ], + "x-ms-client-request-id": [ + "d1d2fb6b-56ad-497f-ae6b-31e5c56a30c4" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "5b4c678e-c182-499a-8043-22851cbba4a9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T015333Z:5b4c678e-c182-499a-8043-22851cbba4a9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:53:33 GMT" ], "Content-Length": [ "77" @@ -1162,16 +1231,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/7c489947-22ab-4ab3-a249-5341e1d525d3/profileresults/profile5005/endpointresults/endpoint2428?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvN2M0ODk5NDctMjJhYi00YWIzLWEyNDktNTM0MWUxZDUyNWQzL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDI0Mjg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/b6f98cae-0665-438e-8145-a2026e7c6f9a/profileresults/profile1617/endpointresults/endpoint4978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjZmOThjYWUtMDY2NS00MzhlLTgxNDUtYTIwMjZlN2M2ZjlhL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDQ5Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1182,10 +1251,10 @@ "no-cache" ], "x-ms-request-id": [ - "89027270-fce0-49dd-be26-7ffbaffce7ae" + "3dff50e1-38b4-40c8-a1b5-0045f2b6898e" ], "x-ms-client-request-id": [ - "6c746d1b-7293-468d-ae6a-69c143ac9c71" + "7c8621d2-8fa1-4ecf-a91f-a98f6bbf48ad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,19 +1269,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "b792bc6e-9374-468c-8b11-d06620829b51" + "a5db3183-1557-4575-961d-b0000344ee44" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215156Z:b792bc6e-9374-468c-8b11-d06620829b51" + "WESTUS:20201027T015334Z:a5db3183-1557-4575-961d-b0000344ee44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:51:55 GMT" + "Tue, 27 Oct 2020 01:53:34 GMT" ], "Content-Length": [ "104" @@ -1231,22 +1300,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint4901?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDQ5MDE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint3319?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDMzMTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "b588c95a-3e47-4dca-ac97-5b27812ea9ec" + "6a293303-3103-46e3-8fef-d311321bb496" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1266,13 +1335,13 @@ "10" ], "x-ms-request-id": [ - "69b61485-abbf-4f56-80ec-98e83d47d88b" + "7bb41cba-119a-44ab-b225-dc3c5796c119" ], "x-ms-client-request-id": [ - "b588c95a-3e47-4dca-ac97-5b27812ea9ec" + "6a293303-3103-46e3-8fef-d311321bb496" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/bdfa531d-3f02-4797-9999-b34acbcfdcdc?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/042a0991-74bd-4db3-8e83-b9c204c2fd05?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1293,16 +1362,16 @@ "98" ], "x-ms-correlation-request-id": [ - "ca76f4e5-4053-4be6-ac0d-e39eae64152d" + "45395ea3-6a74-4692-aa7e-be869d7aecb2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215202Z:ca76f4e5-4053-4be6-ac0d-e39eae64152d" + "WESTUS:20201027T015346Z:45395ea3-6a74-4692-aa7e-be869d7aecb2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:52:02 GMT" + "Tue, 27 Oct 2020 01:53:46 GMT" ], "Content-Length": [ "1234" @@ -1314,26 +1383,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint4901\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint4901\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4901.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint3319\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint3319\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3319.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5155/providers/Microsoft.Cdn/profiles/profile5005/endpoints/endpoint4901?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cy9lbmRwb2ludDQ5MDE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8980/providers/Microsoft.Cdn/profiles/profile1617/endpoints/endpoint3319?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cy9lbmRwb2ludDMzMTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9241a818-22a6-4afc-8c78-f6faf79c49cb" + "96414f9c-a8d7-4fe4-b73d-4cddbfae0130" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1344,19 +1413,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/53038057-992f-40a6-8109-97bbdafa4ed7/profileresults/profile5005/endpointresults/endpoint4901?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/4e631960-ece3-439c-b3d6-9965bbd91330/profileresults/profile1617/endpointresults/endpoint3319?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "80907702-74d2-4e34-a257-bee970769ce9" + "917e32e3-694a-43e6-a4bb-281a54c06c0b" ], "x-ms-client-request-id": [ - "9241a818-22a6-4afc-8c78-f6faf79c49cb" + "96414f9c-a8d7-4fe4-b73d-4cddbfae0130" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/53038057-992f-40a6-8109-97bbdafa4ed7?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/4e631960-ece3-439c-b3d6-9965bbd91330?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1374,16 +1443,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "ed6c6fef-6f6a-4b63-97a5-b5e8f81f4665" + "b0808857-2efe-4e38-a0a7-0bf8471e5246" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215307Z:ed6c6fef-6f6a-4b63-97a5-b5e8f81f4665" + "WESTUS:20201027T015448Z:b0808857-2efe-4e38-a0a7-0bf8471e5246" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:06 GMT" + "Tue, 27 Oct 2020 01:54:47 GMT" ], "Expires": [ "-1" @@ -1396,16 +1465,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/53038057-992f-40a6-8109-97bbdafa4ed7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTMwMzgwNTctOTkyZi00MGE2LTgxMDktOTdiYmRhZmE0ZWQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/4e631960-ece3-439c-b3d6-9965bbd91330?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2MzE5NjAtZWNlMy00MzljLWIzZDYtOTk2NWJiZDkxMzMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1416,10 +1485,10 @@ "no-cache" ], "x-ms-request-id": [ - "d608bc82-54ef-4d28-aa63-a052a557d67e" + "1e8e1c83-e07a-43f8-b274-ac76226e7c7b" ], "x-ms-client-request-id": [ - "17284fb9-f13c-431e-b00d-a84431c229fd" + "456d2cf9-dfa0-4064-8da4-a0812b394169" ], "OData-Version": [ "4.0" @@ -1437,19 +1506,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-correlation-request-id": [ - "0145f70c-de83-4215-ba00-77880861896e" + "5257de5f-e7f1-4136-9df2-73643b9f573d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215317Z:0145f70c-de83-4215-ba00-77880861896e" + "WESTUS:20201027T015458Z:5257de5f-e7f1-4136-9df2-73643b9f573d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:17 GMT" + "Tue, 27 Oct 2020 01:54:57 GMT" ], "Content-Length": [ "78" @@ -1465,16 +1534,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/53038057-992f-40a6-8109-97bbdafa4ed7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTMwMzgwNTctOTkyZi00MGE2LTgxMDktOTdiYmRhZmE0ZWQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/4e631960-ece3-439c-b3d6-9965bbd91330?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2MzE5NjAtZWNlMy00MzljLWIzZDYtOTk2NWJiZDkxMzMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1485,10 +1554,10 @@ "no-cache" ], "x-ms-request-id": [ - "e7f9ec33-9bc7-4313-a701-e4989e39ff25" + "7661e348-0aeb-40ef-a2f1-5f3927054f37" ], "x-ms-client-request-id": [ - "bb7bdc47-074f-40e3-80e8-87ba72875bdf" + "2323e99c-c8a7-4ab3-864b-d5402643cf48" ], "OData-Version": [ "4.0" @@ -1506,19 +1575,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-correlation-request-id": [ - "ff0a4d5e-3d9d-4990-abf8-eaae6e0e4662" + "768b4039-e18c-4bb0-9683-ccfce375dbd1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215327Z:ff0a4d5e-3d9d-4990-abf8-eaae6e0e4662" + "WESTUS:20201027T015509Z:768b4039-e18c-4bb0-9683-ccfce375dbd1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:27 GMT" + "Tue, 27 Oct 2020 01:55:08 GMT" ], "Content-Length": [ "77" @@ -1534,16 +1603,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155/providers/Microsoft.Cdn/operationresults/53038057-992f-40a6-8109-97bbdafa4ed7/profileresults/profile5005/endpointresults/endpoint4901?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTMwMzgwNTctOTkyZi00MGE2LTgxMDktOTdiYmRhZmE0ZWQ3L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU1MDA1L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDQ5MDE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980/providers/Microsoft.Cdn/operationresults/4e631960-ece3-439c-b3d6-9965bbd91330/profileresults/profile1617/endpointresults/endpoint3319?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2MzE5NjAtZWNlMy00MzljLWIzZDYtOTk2NWJiZDkxMzMwL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxNjE3L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDMzMTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1554,10 +1623,10 @@ "no-cache" ], "x-ms-request-id": [ - "85fc86bc-8a76-48f4-aac7-9775ae1bc6bc" + "f2f62e66-d786-45a9-a22e-80674c6cc438" ], "x-ms-client-request-id": [ - "20455163-5239-46f3-8e40-e0ac1deb589f" + "fac94b83-3edb-4de2-b44b-e84e5d3996d7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1572,19 +1641,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-correlation-request-id": [ - "55ff5ad7-d36d-4167-810e-5c76e8a386b2" + "66ac3a61-481a-4b86-b33a-1584ce8fe7c3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215328Z:55ff5ad7-d36d-4167-810e-5c76e8a386b2" + "WESTUS:20201027T015509Z:66ac3a61-481a-4b86-b33a-1584ce8fe7c3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:28 GMT" + "Tue, 27 Oct 2020 01:55:09 GMT" ], "Content-Length": [ "104" @@ -1603,21 +1672,21 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5155?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1MTU1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8980?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTgwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ea484b6-b738-4744-bb5e-7e1f50d473e8" + "aa47de0d-1da4-4723-be6d-b75441342479" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1629,7 +1698,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1638,13 +1707,13 @@ "14999" ], "x-ms-request-id": [ - "570eaad3-fc59-44d8-8f38-1fb56618f3a0" + "269b4c74-c2ad-43c7-ad37-1b78db8d6313" ], "x-ms-correlation-request-id": [ - "570eaad3-fc59-44d8-8f38-1fb56618f3a0" + "269b4c74-c2ad-43c7-ad37-1b78db8d6313" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215330Z:570eaad3-fc59-44d8-8f38-1fb56618f3a0" + "WESTUS:20201027T015511Z:269b4c74-c2ad-43c7-ad37-1b78db8d6313" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1653,7 +1722,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:29 GMT" + "Tue, 27 Oct 2020 01:55:10 GMT" ], "Expires": [ "-1" @@ -1666,15 +1735,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1686,22 +1755,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-request-id": [ - "8848d493-bdc2-4133-bf68-5da3fcaf36c0" + "39047b38-d990-4c14-ad1e-ac742698ad7f" ], "x-ms-correlation-request-id": [ - "8848d493-bdc2-4133-bf68-5da3fcaf36c0" + "39047b38-d990-4c14-ad1e-ac742698ad7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215345Z:8848d493-bdc2-4133-bf68-5da3fcaf36c0" + "WESTUS:20201027T015526Z:39047b38-d990-4c14-ad1e-ac742698ad7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1710,7 +1779,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:44 GMT" + "Tue, 27 Oct 2020 01:55:25 GMT" ], "Expires": [ "-1" @@ -1723,15 +1792,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1743,22 +1812,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-request-id": [ - "f9653748-0061-4892-893f-6ea5067cc0e0" + "117cdd2e-dcc7-4275-8193-a3b516b6621b" ], "x-ms-correlation-request-id": [ - "f9653748-0061-4892-893f-6ea5067cc0e0" + "117cdd2e-dcc7-4275-8193-a3b516b6621b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215400Z:f9653748-0061-4892-893f-6ea5067cc0e0" + "WESTUS:20201027T015541Z:117cdd2e-dcc7-4275-8193-a3b516b6621b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1767,7 +1836,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:53:59 GMT" + "Tue, 27 Oct 2020 01:55:40 GMT" ], "Expires": [ "-1" @@ -1780,15 +1849,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1800,22 +1869,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-request-id": [ - "9935deb8-3e05-4680-8a70-b2a0c01ed64a" + "f5151be5-a9f7-4a2c-a911-b9d26cb3f34c" ], "x-ms-correlation-request-id": [ - "9935deb8-3e05-4680-8a70-b2a0c01ed64a" + "f5151be5-a9f7-4a2c-a911-b9d26cb3f34c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215415Z:9935deb8-3e05-4680-8a70-b2a0c01ed64a" + "WESTUS:20201027T015556Z:f5151be5-a9f7-4a2c-a911-b9d26cb3f34c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,7 +1893,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:54:14 GMT" + "Tue, 27 Oct 2020 01:55:55 GMT" ], "Expires": [ "-1" @@ -1837,15 +1906,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1857,22 +1926,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-request-id": [ - "24f8c63e-5f1a-46bf-af90-f79ba9ac537d" + "d5830413-0a3b-4f92-9491-0be85afa7b70" ], "x-ms-correlation-request-id": [ - "24f8c63e-5f1a-46bf-af90-f79ba9ac537d" + "d5830413-0a3b-4f92-9491-0be85afa7b70" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215430Z:24f8c63e-5f1a-46bf-af90-f79ba9ac537d" + "WESTUS:20201027T015611Z:d5830413-0a3b-4f92-9491-0be85afa7b70" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1950,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:54:29 GMT" + "Tue, 27 Oct 2020 01:56:11 GMT" ], "Expires": [ "-1" @@ -1894,15 +1963,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1914,22 +1983,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-request-id": [ - "e9b79c3a-7b8f-4655-9389-ec190c4812bf" + "b4916673-6af5-44ad-8d44-1d2590ab304d" ], "x-ms-correlation-request-id": [ - "e9b79c3a-7b8f-4655-9389-ec190c4812bf" + "b4916673-6af5-44ad-8d44-1d2590ab304d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215445Z:e9b79c3a-7b8f-4655-9389-ec190c4812bf" + "WESTUS:20201027T015626Z:b4916673-6af5-44ad-8d44-1d2590ab304d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,7 +2007,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:54:45 GMT" + "Tue, 27 Oct 2020 01:56:26 GMT" ], "Expires": [ "-1" @@ -1951,15 +2020,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1971,22 +2040,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-request-id": [ - "7f74e9c5-5992-4d73-a935-fdb580c2ff5f" + "d11543e2-ced2-4682-847e-1f5431c9b33c" ], "x-ms-correlation-request-id": [ - "7f74e9c5-5992-4d73-a935-fdb580c2ff5f" + "d11543e2-ced2-4682-847e-1f5431c9b33c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215500Z:7f74e9c5-5992-4d73-a935-fdb580c2ff5f" + "WESTUS:20201027T015641Z:d11543e2-ced2-4682-847e-1f5431c9b33c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,7 +2064,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:55:00 GMT" + "Tue, 27 Oct 2020 01:56:41 GMT" ], "Expires": [ "-1" @@ -2008,15 +2077,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2028,22 +2097,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-request-id": [ - "c15f06dc-f950-46ef-9f26-ead5a2df9f20" + "1d748ed0-7e88-44f2-b288-1389d9264a00" ], "x-ms-correlation-request-id": [ - "c15f06dc-f950-46ef-9f26-ead5a2df9f20" + "1d748ed0-7e88-44f2-b288-1389d9264a00" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215515Z:c15f06dc-f950-46ef-9f26-ead5a2df9f20" + "WESTUS:20201027T015656Z:1d748ed0-7e88-44f2-b288-1389d9264a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2052,7 +2121,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:55:14 GMT" + "Tue, 27 Oct 2020 01:56:56 GMT" ], "Expires": [ "-1" @@ -2065,15 +2134,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2085,22 +2154,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-request-id": [ - "4b549b70-9b46-4368-bd08-3e6f7a12985e" + "8e79721c-e7f9-4dd1-9297-926303970462" ], "x-ms-correlation-request-id": [ - "4b549b70-9b46-4368-bd08-3e6f7a12985e" + "8e79721c-e7f9-4dd1-9297-926303970462" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215530Z:4b549b70-9b46-4368-bd08-3e6f7a12985e" + "WESTUS:20201027T015711Z:8e79721c-e7f9-4dd1-9297-926303970462" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,7 +2178,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:55:29 GMT" + "Tue, 27 Oct 2020 01:57:11 GMT" ], "Expires": [ "-1" @@ -2122,15 +2191,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2142,22 +2211,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-request-id": [ - "5b4eeac0-1669-45f3-bb5e-5df9d24644d6" + "a2616297-7500-445a-838a-525b59f61265" ], "x-ms-correlation-request-id": [ - "5b4eeac0-1669-45f3-bb5e-5df9d24644d6" + "a2616297-7500-445a-838a-525b59f61265" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215545Z:5b4eeac0-1669-45f3-bb5e-5df9d24644d6" + "WESTUS:20201027T015726Z:a2616297-7500-445a-838a-525b59f61265" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2166,7 +2235,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:55:44 GMT" + "Tue, 27 Oct 2020 01:57:26 GMT" ], "Expires": [ "-1" @@ -2179,15 +2248,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2199,22 +2268,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-request-id": [ - "9dea6539-a584-4231-94c3-2532bd8080e3" + "b8782634-e3d6-4d74-a72b-07194d42a499" ], "x-ms-correlation-request-id": [ - "9dea6539-a584-4231-94c3-2532bd8080e3" + "b8782634-e3d6-4d74-a72b-07194d42a499" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215600Z:9dea6539-a584-4231-94c3-2532bd8080e3" + "WESTUS:20201027T015741Z:b8782634-e3d6-4d74-a72b-07194d42a499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,7 +2292,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:55:59 GMT" + "Tue, 27 Oct 2020 01:57:41 GMT" ], "Expires": [ "-1" @@ -2236,15 +2305,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2256,16 +2325,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11984" ], "x-ms-request-id": [ - "2287d9e3-0c86-4ecf-a89e-81d357effd68" + "fd7d3493-1aa4-4091-9794-bf869f74835c" ], "x-ms-correlation-request-id": [ - "2287d9e3-0c86-4ecf-a89e-81d357effd68" + "fd7d3493-1aa4-4091-9794-bf869f74835c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215615Z:2287d9e3-0c86-4ecf-a89e-81d357effd68" + "WESTUS:20201027T015756Z:fd7d3493-1aa4-4091-9794-bf869f74835c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2274,7 +2343,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:14 GMT" + "Tue, 27 Oct 2020 01:57:56 GMT" ], "Expires": [ "-1" @@ -2287,15 +2356,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVEUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk4MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGs0TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2307,16 +2376,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11983" ], "x-ms-request-id": [ - "c420a4b1-ebcf-43de-8feb-49a6036636d7" + "9b9bfa8c-632c-43c3-b49e-a8baad98785d" ], "x-ms-correlation-request-id": [ - "c420a4b1-ebcf-43de-8feb-49a6036636d7" + "9b9bfa8c-632c-43c3-b49e-a8baad98785d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215615Z:c420a4b1-ebcf-43de-8feb-49a6036636d7" + "WESTUS:20201027T015756Z:9b9bfa8c-632c-43c3-b49e-a8baad98785d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2325,7 +2394,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:14 GMT" + "Tue, 27 Oct 2020 01:57:56 GMT" ], "Expires": [ "-1" @@ -2340,12 +2409,12 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup5155" + "cdnResourceGroup8980" ], "EndpointDeleteTest": [ - "profile5005", - "endpoint2428", - "endpoint4901" + "profile1617", + "endpoint4978", + "endpoint3319" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointGetListTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointGetListTest.json index 6d4db77ff65a8..a6c9025d5d324 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointGetListTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointGetListTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "efbdf125-5237-4b98-9c52-d5c358e20483" + "f9f90631-4838-457a-ab4a-e0aee5679fe7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "7c55f39d-99da-4129-8933-e41fd2591e4e" + "9cceeb05-2d28-43cf-a8d0-98c12734edf8" ], "x-ms-correlation-request-id": [ - "7c55f39d-99da-4129-8933-e41fd2591e4e" + "9cceeb05-2d28-43cf-a8d0-98c12734edf8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220011Z:7c55f39d-99da-4129-8933-e41fd2591e4e" + "WESTUS:20201027T020150Z:9cceeb05-2d28-43cf-a8d0-98c12734edf8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:11 GMT" + "Tue, 27 Oct 2020 02:01:49 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396\",\r\n \"name\": \"cdnResourceGroup4396\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030\",\r\n \"name\": \"cdnResourceGroup4030\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "2f161fd8-fcc1-4afc-8434-24d14fc1ead2" + "f88f5d23-d0a3-4d5b-aaaf-fafddde8a729" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "d505c2fe-2ba5-448c-98b4-ed744ad7ee38" + "23c0588c-7929-4ef4-ad8e-75bee42c0119" ], "x-ms-client-request-id": [ - "2f161fd8-fcc1-4afc-8434-24d14fc1ead2" + "f88f5d23-d0a3-4d5b-aaaf-fafddde8a729" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/db375d5d-ace2-416a-9e73-9739794c16e5?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/9b011b41-178d-40ba-8f23-4042241542cc?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "86d91e06-6d37-4886-aef7-36bf2c9db661" + "21cad350-c2b4-4e4c-a9d0-c97e1891ffe5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220026Z:86d91e06-6d37-4886-aef7-36bf2c9db661" + "WESTUS:20201027T020157Z:21cad350-c2b4-4e4c-a9d0-c97e1891ffe5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:25 GMT" + "Tue, 27 Oct 2020 02:01:57 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile2453\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9635\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/db375d5d-ace2-416a-9e73-9739794c16e5?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZGIzNzVkNWQtYWNlMi00MTZhLTllNzMtOTczOTc5NGMxNmU1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/9b011b41-178d-40ba-8f23-4042241542cc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWIwMTFiNDEtMTc4ZC00MGJhLThmMjMtNDA0MjI0MTU0MmNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "0878cdbf-3cac-4fcd-8347-bbb5efc49182" + "ab57feff-51af-4dbb-ad31-f11478f4aded" ], "x-ms-client-request-id": [ - "14593d22-612a-4f98-ab74-87310fda51d9" + "ef8a6a1a-137b-4fa1-8277-7ca1ab41df10" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "7413431b-8ea9-427c-aeda-655ae5b81638" + "5e8b148a-2920-452b-bc56-1c83c2573e8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220036Z:7413431b-8ea9-427c-aeda-655ae5b81638" + "WESTUS:20201027T020207Z:5e8b148a-2920-452b-bc56-1c83c2573e8a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:36 GMT" + "Tue, 27 Oct 2020 02:02:07 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/db375d5d-ace2-416a-9e73-9739794c16e5?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZGIzNzVkNWQtYWNlMi00MTZhLTllNzMtOTczOTc5NGMxNmU1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/9b011b41-178d-40ba-8f23-4042241542cc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWIwMTFiNDEtMTc4ZC00MGJhLThmMjMtNDA0MjI0MTU0MmNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "35bdc4f4-bd61-44a3-8a9e-a762c375f05a" + "74abcb88-dcc7-4aec-9759-d89373a0d095" ], "x-ms-client-request-id": [ - "517a1b53-b141-4d75-938b-98ea1fcfa8e7" + "0a625c94-2ee4-4c86-a07b-bc881701e37f" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "54e856e8-5979-4f59-8c76-cf7978d7e843" + "72ab5765-29cb-4ebe-bc51-81f933b7c611" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220046Z:54e856e8-5979-4f59-8c76-cf7978d7e843" + "WESTUS:20201027T020218Z:72ab5765-29cb-4ebe-bc51-81f933b7c611" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:46 GMT" + "Tue, 27 Oct 2020 02:02:17 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/db375d5d-ace2-416a-9e73-9739794c16e5?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZGIzNzVkNWQtYWNlMi00MTZhLTllNzMtOTczOTc5NGMxNmU1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/9b011b41-178d-40ba-8f23-4042241542cc?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOWIwMTFiNDEtMTc4ZC00MGJhLThmMjMtNDA0MjI0MTU0MmNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "72ea8e29-e600-4269-ba75-17bdabbe42ef" + "7b71bba4-049d-4d98-92f0-cc59df23256f" ], "x-ms-client-request-id": [ - "f36f62d9-6cbb-4f6c-bc3c-701e8a8b4536" + "f5e1052e-d1a2-4424-9bc6-c66abef79695" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "0aa15bbd-9374-44a8-8bdf-77608066e4fe" + "7df66324-86e1-4691-b53b-0f672eca7010" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220056Z:0aa15bbd-9374-44a8-8bdf-77608066e4fe" + "WESTUS:20201027T020228Z:7df66324-86e1-4691-b53b-0f672eca7010" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:56 GMT" + "Tue, 27 Oct 2020 02:02:28 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "1623fad3-977a-4f6b-bd33-ca1798efa169" + "420f0a3f-d532-4ad8-8426-8653ae048e33" ], "x-ms-client-request-id": [ - "0adf8919-dfd7-4176-bf8a-cfbd4e89b7bb" + "ac26cb6d-01a0-4bee-afb4-4d67bb8e45db" ], "OData-Version": [ "4.0" @@ -405,16 +405,16 @@ "49" ], "x-ms-correlation-request-id": [ - "327e7380-ab17-4013-b51d-d2a24e467919" + "66583c3d-fc61-483e-af4c-0cfe79d4dba6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220057Z:327e7380-ab17-4013-b51d-d2a24e467919" + "WESTUS:20201027T020229Z:66583c3d-fc61-483e-af4c-0cfe79d4dba6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:57 GMT" + "Tue, 27 Oct 2020 02:02:29 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile2453\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9635\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "32a89f0f-94d2-4236-9466-e1289927bc60" + "755cf41a-fd51-4ec8-aa82-d5ca0e8259b8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -456,10 +456,10 @@ "no-cache" ], "x-ms-request-id": [ - "d7df82a9-edf5-44e7-a7c1-541063f9fd90" + "6466d005-7b4d-4258-94c5-748abfaaefe9" ], "x-ms-client-request-id": [ - "32a89f0f-94d2-4236-9466-e1289927bc60" + "755cf41a-fd51-4ec8-aa82-d5ca0e8259b8" ], "OData-Version": [ "4.0" @@ -480,16 +480,16 @@ "49" ], "x-ms-correlation-request-id": [ - "10753ab6-ca5a-4c37-9ca9-1dd0a5d2ceca" + "687f002a-f5ea-4359-9d8f-cdd55d448b80" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220058Z:10753ab6-ca5a-4c37-9ca9-1dd0a5d2ceca" + "WESTUS:20201027T020230Z:687f002a-f5ea-4359-9d8f-cdd55d448b80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:58 GMT" + "Tue, 27 Oct 2020 02:02:30 GMT" ], "Content-Length": [ "28" @@ -505,22 +505,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "920573b8-eab4-4fad-983b-0a514df8ceac" + "da9f0515-3820-428f-9d24-8c58e541da41" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -531,10 +531,10 @@ "no-cache" ], "x-ms-request-id": [ - "e7c8b96f-30dd-4078-a299-44abb08f66c9" + "a8080b44-3ccb-464f-b497-7570e834dabc" ], "x-ms-client-request-id": [ - "920573b8-eab4-4fad-983b-0a514df8ceac" + "da9f0515-3820-428f-9d24-8c58e541da41" ], "OData-Version": [ "4.0" @@ -555,16 +555,16 @@ "46" ], "x-ms-correlation-request-id": [ - "55d46c01-4002-4fa1-97ca-fdcc5f33a4ec" + "1d4c91ec-28ff-4a89-9741-0583c5417682" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220126Z:55d46c01-4002-4fa1-97ca-fdcc5f33a4ec" + "WESTUS:20201027T020259Z:1d4c91ec-28ff-4a89-9741-0583c5417682" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:25 GMT" + "Tue, 27 Oct 2020 02:02:59 GMT" ], "Content-Length": [ "1350" @@ -576,26 +576,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint1730\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1730.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint7717\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7717.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9074ad41-8c50-4117-be29-22d4009f792f" + "cfedcd95-0b41-415b-ae9e-ca1ccd55b901" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "fc3c8468-f367-47d9-8f18-88c4a9413280" + "7c173086-c911-4d46-a91f-0b27817e8dad" ], "x-ms-client-request-id": [ - "9074ad41-8c50-4117-be29-22d4009f792f" + "cfedcd95-0b41-415b-ae9e-ca1ccd55b901" ], "OData-Version": [ "4.0" @@ -630,19 +630,19 @@ "45" ], "x-ms-correlation-request-id": [ - "ce876ae8-673c-448b-a9ed-2caa8a4e0ad9" + "0946dde3-6965-4b19-ab2c-6f3b2d307e76" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220130Z:ce876ae8-673c-448b-a9ed-2caa8a4e0ad9" + "WESTUS:20201027T020305Z:0946dde3-6965-4b19-ab2c-6f3b2d307e76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:30 GMT" + "Tue, 27 Oct 2020 02:03:05 GMT" ], "Content-Length": [ - "2673" + "2670" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint1730\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1730.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n },\r\n {\r\n \"name\": \"endpoint8678\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8678.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint7717\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7717.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n },\r\n {\r\n \"name\": \"endpoint632\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint632.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "734a9375-7d3f-42f3-8e54-348a20ec6bc5" + "d3183d44-55a8-4eb0-b30b-8a612f1e4b3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -681,10 +681,10 @@ "no-cache" ], "x-ms-request-id": [ - "4409b30c-d592-41c9-a968-466f79570cff" + "f5582577-4816-45c1-9676-5c17028124da" ], "x-ms-client-request-id": [ - "734a9375-7d3f-42f3-8e54-348a20ec6bc5" + "d3183d44-55a8-4eb0-b30b-8a612f1e4b3e" ], "OData-Version": [ "4.0" @@ -705,19 +705,19 @@ "43" ], "x-ms-correlation-request-id": [ - "e33e1730-3b3f-4228-be6f-41b70dba73d4" + "15ed181c-18f4-4b01-bbe6-0ae5e1c9fcb6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220156Z:e33e1730-3b3f-4228-be6f-41b70dba73d4" + "WESTUS:20201027T020331Z:15ed181c-18f4-4b01-bbe6-0ae5e1c9fcb6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:55 GMT" + "Tue, 27 Oct 2020 02:03:31 GMT" ], "Content-Length": [ - "1350" + "1347" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -726,26 +726,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint8678\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8678.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"endpoint632\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint632.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "424e9d20-8282-41a5-b269-6b2d13975506" + "293264a0-d2a5-4825-8e93-1ebbc1e3da17" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -756,10 +756,10 @@ "no-cache" ], "x-ms-request-id": [ - "ac1588ce-0f67-41db-9908-6bc8101e59a4" + "152575a3-dd6d-456c-bcc2-ccc9c8aa1d9c" ], "x-ms-client-request-id": [ - "424e9d20-8282-41a5-b269-6b2d13975506" + "293264a0-d2a5-4825-8e93-1ebbc1e3da17" ], "OData-Version": [ "4.0" @@ -780,16 +780,16 @@ "41" ], "x-ms-correlation-request-id": [ - "aecf8d42-4d0b-471e-a06b-447406407d14" + "1baf2d44-ab87-4d12-875d-29cdbbda0069" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220403Z:aecf8d42-4d0b-471e-a06b-447406407d14" + "WESTUS:20201027T020536Z:1baf2d44-ab87-4d12-875d-29cdbbda0069" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:04:02 GMT" + "Tue, 27 Oct 2020 02:05:35 GMT" ], "Content-Length": [ "28" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "375a9eb1-9107-4cf0-a12b-19780c71b40f" + "40d08aa9-4002-4401-8bd7-44bcec3a27ee" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -840,13 +840,13 @@ "10" ], "x-ms-request-id": [ - "6ad02912-ed3c-49ce-8354-4d8ba2f8f828" + "6cf157ee-5f45-4bbc-ba8c-0c1a60fcd0e7" ], "x-ms-client-request-id": [ - "375a9eb1-9107-4cf0-a12b-19780c71b40f" + "40d08aa9-4002-4401-8bd7-44bcec3a27ee" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/e8020923-52ac-492b-b7bd-4b16145be52f?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cbb422f4-e22f-48fb-be2e-b6dfcc42ecbf?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -867,16 +867,16 @@ "99" ], "x-ms-correlation-request-id": [ - "d674d79c-6b46-4a7c-90e1-d6f7b59ce5ef" + "a6c73326-673b-4397-bb96-4f40038ea8c6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220102Z:d674d79c-6b46-4a7c-90e1-d6f7b59ce5ef" + "WESTUS:20201027T020236Z:a6c73326-673b-4397-bb96-4f40038ea8c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:02 GMT" + "Tue, 27 Oct 2020 02:02:35 GMT" ], "Content-Length": [ "1234" @@ -888,20 +888,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1730\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1730.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7717\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7717.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/e8020923-52ac-492b-b7bd-4b16145be52f?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTgwMjA5MjMtNTJhYy00OTJiLWI3YmQtNGIxNjE0NWJlNTJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cbb422f4-e22f-48fb-be2e-b6dfcc42ecbf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2JiNDIyZjQtZTIyZi00OGZiLWJlMmUtYjZkZmNjNDJlY2JmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -912,10 +912,10 @@ "no-cache" ], "x-ms-request-id": [ - "338a1a3d-492b-4781-88bb-adda40968cee" + "a2464de4-9547-4fee-9a6b-6f9ce41e16f5" ], "x-ms-client-request-id": [ - "1ebf7ca2-86da-4c11-859f-1497896b8ac4" + "b261a8f6-902e-4c6b-8e3a-1940ff7351bc" ], "OData-Version": [ "4.0" @@ -936,16 +936,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "25e9267b-9350-4f79-8c8a-317ba952e203" + "2bcefc51-2be2-43c4-a36b-0263671a3352" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220112Z:25e9267b-9350-4f79-8c8a-317ba952e203" + "WESTUS:20201027T020246Z:2bcefc51-2be2-43c4-a36b-0263671a3352" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:12 GMT" + "Tue, 27 Oct 2020 02:02:45 GMT" ], "Content-Length": [ "78" @@ -961,16 +961,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/e8020923-52ac-492b-b7bd-4b16145be52f?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTgwMjA5MjMtNTJhYy00OTJiLWI3YmQtNGIxNjE0NWJlNTJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cbb422f4-e22f-48fb-be2e-b6dfcc42ecbf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2JiNDIyZjQtZTIyZi00OGZiLWJlMmUtYjZkZmNjNDJlY2JmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -981,10 +981,10 @@ "no-cache" ], "x-ms-request-id": [ - "b270b9f4-9eb3-4e02-81c9-d3e03ca11203" + "c08de9f8-d762-4431-8c8f-f2f5f50053c1" ], "x-ms-client-request-id": [ - "cc9f17b9-d3b8-4540-9b90-8b115db47155" + "80081c4a-9ed6-448b-80d1-27a17a132aab" ], "OData-Version": [ "4.0" @@ -1005,16 +1005,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "765a48cf-fea4-41df-94eb-688a601c63a4" + "d74357b1-6556-476f-8bc4-f0ea11b33508" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220123Z:765a48cf-fea4-41df-94eb-688a601c63a4" + "WESTUS:20201027T020256Z:d74357b1-6556-476f-8bc4-f0ea11b33508" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:22 GMT" + "Tue, 27 Oct 2020 02:02:56 GMT" ], "Content-Length": [ "77" @@ -1030,16 +1030,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1050,10 +1050,10 @@ "no-cache" ], "x-ms-request-id": [ - "0053f8cf-ee70-4eda-973f-fbd07b1b9a38" + "d257fe88-90cb-4f0d-881b-06d4a257fc7b" ], "x-ms-client-request-id": [ - "f0957e90-3cc4-4335-9573-3739fcc30eb9" + "e2b4f290-ecbb-4db6-9706-85184bfe9e20" ], "OData-Version": [ "4.0" @@ -1074,16 +1074,16 @@ "48" ], "x-ms-correlation-request-id": [ - "49a2bdf0-5d04-43ee-b05a-fcf7843c1c57" + "333de405-d565-4c19-bc8d-5a9966dea8cc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220124Z:49a2bdf0-5d04-43ee-b05a-fcf7843c1c57" + "WESTUS:20201027T020257Z:333de405-d565-4c19-bc8d-5a9966dea8cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:23 GMT" + "Tue, 27 Oct 2020 02:02:57 GMT" ], "Content-Length": [ "1234" @@ -1095,26 +1095,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1730\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1730.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7717\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7717.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6b28e116-14f0-4e9a-976c-8a9bb7a2226b" + "262e04d2-5cda-4d45-9603-11e9f06120e6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1125,10 +1125,10 @@ "no-cache" ], "x-ms-request-id": [ - "9826d71e-da82-4387-b264-3a2ed3fae289" + "7380d0d1-6e45-4705-af80-baa43cc56798" ], "x-ms-client-request-id": [ - "6b28e116-14f0-4e9a-976c-8a9bb7a2226b" + "262e04d2-5cda-4d45-9603-11e9f06120e6" ], "OData-Version": [ "4.0" @@ -1149,16 +1149,16 @@ "47" ], "x-ms-correlation-request-id": [ - "ef526b84-3bbc-4170-9b98-29766f149e79" + "6e13be24-aff1-40bb-969f-a143b85e4436" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220125Z:ef526b84-3bbc-4170-9b98-29766f149e79" + "WESTUS:20201027T020258Z:6e13be24-aff1-40bb-969f-a143b85e4436" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:24 GMT" + "Tue, 27 Oct 2020 02:02:58 GMT" ], "Content-Length": [ "1234" @@ -1170,26 +1170,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1730\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1730.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint7717\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7717.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "155e6cf8-9ecc-4de0-877b-682905ee65a4" + "efbe6b96-d772-4a88-a66d-39bfc05a7042" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1200,10 +1200,10 @@ "no-cache" ], "x-ms-request-id": [ - "64e3b093-e5cf-41cc-a427-a3b6bfba5b33" + "eaa0a7d1-5809-436d-8606-cce69851ef98" ], "x-ms-client-request-id": [ - "155e6cf8-9ecc-4de0-877b-682905ee65a4" + "efbe6b96-d772-4a88-a66d-39bfc05a7042" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,16 +1221,16 @@ "44" ], "x-ms-correlation-request-id": [ - "7d21b0ac-9f4e-48f4-89ef-0c79879d97c1" + "65990897-b635-4f8e-9c8f-ac98bf457535" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220155Z:7d21b0ac-9f4e-48f4-89ef-0c79879d97c1" + "WESTUS:20201027T020330Z:65990897-b635-4f8e-9c8f-ac98bf457535" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:54 GMT" + "Tue, 27 Oct 2020 02:03:30 GMT" ], "Content-Length": [ "104" @@ -1249,22 +1249,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDg2Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDYzMj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "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": [ - "00b0ff0a-3ab7-4e9b-8d3a-ea2af35efc39" + "debbcfde-37b3-4010-a067-db0d8122742a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1284,13 +1284,13 @@ "10" ], "x-ms-request-id": [ - "9f2d184d-6f5e-460e-8f00-38e96f285dc4" + "57a8711e-d09e-46cf-bbef-dead2a0572be" ], "x-ms-client-request-id": [ - "00b0ff0a-3ab7-4e9b-8d3a-ea2af35efc39" + "debbcfde-37b3-4010-a067-db0d8122742a" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/e4c2817b-9114-41e2-812f-651db7a1b031?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/ae166fe4-2ddb-4b24-b047-9b62c13d1d47?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1311,19 +1311,19 @@ "98" ], "x-ms-correlation-request-id": [ - "127bdb71-4d0c-42db-9dba-2122c317c6f6" + "c9aaa8cf-1869-49c9-b328-3cbeb4a55114" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220129Z:127bdb71-4d0c-42db-9dba-2122c317c6f6" + "WESTUS:20201027T020304Z:c9aaa8cf-1869-49c9-b328-3cbeb4a55114" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:29 GMT" + "Tue, 27 Oct 2020 02:03:04 GMT" ], "Content-Length": [ - "1234" + "1231" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1332,26 +1332,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8678\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8678.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint632\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint632.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f4618f69-c62c-4173-95b4-7e8747411500" + "b93e8f64-09a9-4a16-a6af-7034a359be1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1362,19 +1362,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/5923e9d1-3612-4644-a7f2-433502d514bd/profileresults/profile2453/endpointresults/endpoint1730?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cc6b2c69-e5d3-4235-9d31-c5853ff9f9f8/profileresults/profile9635/endpointresults/endpoint7717?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "49a9d8a4-212e-4c6b-81f2-a25d38b7c2c1" + "f0c91bd5-20db-4e5f-8037-bfbf0ef56675" ], "x-ms-client-request-id": [ - "f4618f69-c62c-4173-95b4-7e8747411500" + "b93e8f64-09a9-4a16-a6af-7034a359be1c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/5923e9d1-3612-4644-a7f2-433502d514bd?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cc6b2c69-e5d3-4235-9d31-c5853ff9f9f8?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,16 +1392,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "b5a8884c-ae72-430d-bbbe-c5ccb964676d" + "6d2e7586-3b80-4c60-aac7-2a3dd63d7d74" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220132Z:b5a8884c-ae72-430d-bbbe-c5ccb964676d" + "WESTUS:20201027T020307Z:6d2e7586-3b80-4c60-aac7-2a3dd63d7d74" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:32 GMT" + "Tue, 27 Oct 2020 02:03:07 GMT" ], "Expires": [ "-1" @@ -1414,16 +1414,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/5923e9d1-3612-4644-a7f2-433502d514bd?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTkyM2U5ZDEtMzYxMi00NjQ0LWE3ZjItNDMzNTAyZDUxNGJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cc6b2c69-e5d3-4235-9d31-c5853ff9f9f8?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2M2YjJjNjktZTVkMy00MjM1LTlkMzEtYzU4NTNmZjlmOWY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1434,10 +1434,10 @@ "no-cache" ], "x-ms-request-id": [ - "c3949a48-d753-4963-9e46-2d4c55d7240b" + "a8db828e-c2df-4e67-b3be-d871da8bfbcf" ], "x-ms-client-request-id": [ - "a0418607-d24a-4799-b342-b16350d8c4d7" + "33cd4d26-8c17-4024-84ae-291588280064" ], "OData-Version": [ "4.0" @@ -1458,16 +1458,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "4f69e648-3b25-4ace-b744-93d3ef3aaf54" + "5574f1bf-bd18-425b-b055-a8d08bb60d75" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220143Z:4f69e648-3b25-4ace-b744-93d3ef3aaf54" + "WESTUS:20201027T020318Z:5574f1bf-bd18-425b-b055-a8d08bb60d75" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:42 GMT" + "Tue, 27 Oct 2020 02:03:17 GMT" ], "Content-Length": [ "78" @@ -1483,16 +1483,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/5923e9d1-3612-4644-a7f2-433502d514bd?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTkyM2U5ZDEtMzYxMi00NjQ0LWE3ZjItNDMzNTAyZDUxNGJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cc6b2c69-e5d3-4235-9d31-c5853ff9f9f8?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2M2YjJjNjktZTVkMy00MjM1LTlkMzEtYzU4NTNmZjlmOWY4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1503,10 +1503,10 @@ "no-cache" ], "x-ms-request-id": [ - "d92b8b3b-c7aa-41eb-a0ce-649f8d863130" + "326ae376-15d5-4fe7-9b87-0f39c1d9d696" ], "x-ms-client-request-id": [ - "480fb6e4-0762-4ed7-84c1-62e726d2fe6a" + "1cf178d2-b8e0-4538-a9f8-a14ddd89df05" ], "OData-Version": [ "4.0" @@ -1527,16 +1527,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "6da2acc3-9a9b-4086-b6bb-dca4ccfd1fba" + "7a817b8f-29e2-4b5a-b678-c343c71489ee" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220153Z:6da2acc3-9a9b-4086-b6bb-dca4ccfd1fba" + "WESTUS:20201027T020328Z:7a817b8f-29e2-4b5a-b678-c343c71489ee" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:52 GMT" + "Tue, 27 Oct 2020 02:03:27 GMT" ], "Content-Length": [ "77" @@ -1552,16 +1552,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/5923e9d1-3612-4644-a7f2-433502d514bd/profileresults/profile2453/endpointresults/endpoint1730?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTkyM2U5ZDEtMzYxMi00NjQ0LWE3ZjItNDMzNTAyZDUxNGJkL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDE3MzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/cc6b2c69-e5d3-4235-9d31-c5853ff9f9f8/profileresults/profile9635/endpointresults/endpoint7717?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2M2YjJjNjktZTVkMy00MjM1LTlkMzEtYzU4NTNmZjlmOWY4L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDc3MTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1572,10 +1572,10 @@ "no-cache" ], "x-ms-request-id": [ - "4c387869-7930-4467-b504-111c27bd6ba6" + "cd003d97-17ae-46fc-a389-1ea94a3fb1f1" ], "x-ms-client-request-id": [ - "813e6684-7a51-4c35-966f-6f75afe828f7" + "627327a8-9bb2-40f2-9d55-6482b90a136c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1593,16 +1593,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "ce28353d-f33c-421c-9bd7-4634c5c20da4" + "854ad432-23a4-4a63-b93c-9ca9b77917bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220154Z:ce28353d-f33c-421c-9bd7-4634c5c20da4" + "WESTUS:20201027T020329Z:854ad432-23a4-4a63-b93c-9ca9b77917bf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:01:53 GMT" + "Tue, 27 Oct 2020 02:03:28 GMT" ], "Content-Length": [ "104" @@ -1621,22 +1621,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDg2Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDYzMj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5cbf48e0-0c0f-4418-8424-ec3683993afd" + "42133a01-96f1-4b23-a925-e6a88de61cf5" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1647,19 +1647,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/a71db905-f313-485b-911e-99a598340db2/profileresults/profile2453/endpointresults/endpoint8678?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/6327d75a-b84d-48f5-9a6e-28022efd4ef7/profileresults/profile9635/endpointresults/endpoint632?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "de8a0779-edb8-42e0-bbc9-cad78daf7158" + "dc4d8b01-6924-4d8c-9d6d-793c524c6d3f" ], "x-ms-client-request-id": [ - "5cbf48e0-0c0f-4418-8424-ec3683993afd" + "42133a01-96f1-4b23-a925-e6a88de61cf5" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/operationresults/a71db905-f313-485b-911e-99a598340db2?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/operationresults/6327d75a-b84d-48f5-9a6e-28022efd4ef7?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1677,16 +1677,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "6c58c077-b768-4827-9818-2445a190f8d6" + "b53bfc01-bbe0-4412-9861-2aa67eb31934" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220301Z:6c58c077-b768-4827-9818-2445a190f8d6" + "WESTUS:20201027T020433Z:b53bfc01-bbe0-4412-9861-2aa67eb31934" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:03:01 GMT" + "Tue, 27 Oct 2020 02:04:33 GMT" ], "Expires": [ "-1" @@ -1699,22 +1699,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyNDUzL2VuZHBvaW50cy9lbmRwb2ludDg2Nzg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjM1L2VuZHBvaW50cy9lbmRwb2ludDYzMj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "415206d4-cfd6-4e70-bccf-b41c8e77c2c5" + "5fe10f8c-cce7-41f0-ad87-b9e135d030da" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1725,10 +1725,10 @@ "no-cache" ], "x-ms-request-id": [ - "4bb7dc02-e541-4510-91a2-c6d7321dac22" + "18ce94c7-4b67-439a-8888-b1d70aa04989" ], "x-ms-client-request-id": [ - "415206d4-cfd6-4e70-bccf-b41c8e77c2c5" + "5fe10f8c-cce7-41f0-ad87-b9e135d030da" ], "OData-Version": [ "4.0" @@ -1749,19 +1749,19 @@ "42" ], "x-ms-correlation-request-id": [ - "483fdc29-6f5d-4693-8b3c-8426d8e1db32" + "ad5d0845-8b5e-4838-9edf-dde3ec22b57a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220302Z:483fdc29-6f5d-4693-8b3c-8426d8e1db32" + "WESTUS:20201027T020434Z:ad5d0845-8b5e-4838-9edf-dde3ec22b57a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:03:02 GMT" + "Tue, 27 Oct 2020 02:04:34 GMT" ], "Content-Length": [ - "1235" + "1232" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1770,25 +1770,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8678\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396/providers/Microsoft.Cdn/profiles/profile2453/endpoints/endpoint8678\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8678.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Deleting\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint632\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030/providers/Microsoft.Cdn/profiles/profile9635/endpoints/endpoint632\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint632.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Deleting\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4396?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0Mzk2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4030?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDMwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d628a6a9-909f-43d3-b6ac-2982262848b3" + "0115da48-3299-477b-b00a-13d928d330c6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1800,7 +1800,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1809,13 +1809,13 @@ "14999" ], "x-ms-request-id": [ - "a9845d53-1b03-4cb5-b2dc-a925b43281df" + "945bf0c9-6fb9-4f2a-b723-06a255b87f64" ], "x-ms-correlation-request-id": [ - "a9845d53-1b03-4cb5-b2dc-a925b43281df" + "945bf0c9-6fb9-4f2a-b723-06a255b87f64" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220403Z:a9845d53-1b03-4cb5-b2dc-a925b43281df" + "WESTUS:20201027T020536Z:945bf0c9-6fb9-4f2a-b723-06a255b87f64" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1824,7 +1824,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:04:03 GMT" + "Tue, 27 Oct 2020 02:05:35 GMT" ], "Expires": [ "-1" @@ -1837,15 +1837,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1857,7 +1857,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1866,13 +1866,13 @@ "11999" ], "x-ms-request-id": [ - "d4cbdb45-1087-4c50-9057-796201b02e41" + "4cd16fb5-d4f3-4da7-9f95-a430053570fc" ], "x-ms-correlation-request-id": [ - "d4cbdb45-1087-4c50-9057-796201b02e41" + "4cd16fb5-d4f3-4da7-9f95-a430053570fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220418Z:d4cbdb45-1087-4c50-9057-796201b02e41" + "WESTUS:20201027T020551Z:4cd16fb5-d4f3-4da7-9f95-a430053570fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1881,7 +1881,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:04:18 GMT" + "Tue, 27 Oct 2020 02:05:50 GMT" ], "Expires": [ "-1" @@ -1894,15 +1894,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1914,7 +1914,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1923,13 +1923,13 @@ "11998" ], "x-ms-request-id": [ - "0586ffb8-b231-4f9c-a4fe-e3387b0649bc" + "32d8ae90-f86b-48c4-9a73-b8b8164e1020" ], "x-ms-correlation-request-id": [ - "0586ffb8-b231-4f9c-a4fe-e3387b0649bc" + "32d8ae90-f86b-48c4-9a73-b8b8164e1020" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220433Z:0586ffb8-b231-4f9c-a4fe-e3387b0649bc" + "WESTUS:20201027T020606Z:32d8ae90-f86b-48c4-9a73-b8b8164e1020" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1938,7 +1938,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:04:33 GMT" + "Tue, 27 Oct 2020 02:06:05 GMT" ], "Expires": [ "-1" @@ -1951,15 +1951,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1971,7 +1971,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1980,13 +1980,13 @@ "11997" ], "x-ms-request-id": [ - "d6c7e090-54e4-495b-9fe0-7393fceb4db8" + "7f53b99e-cd2c-4e3b-aed8-67974c6a67d3" ], "x-ms-correlation-request-id": [ - "d6c7e090-54e4-495b-9fe0-7393fceb4db8" + "7f53b99e-cd2c-4e3b-aed8-67974c6a67d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220448Z:d6c7e090-54e4-495b-9fe0-7393fceb4db8" + "WESTUS:20201027T020621Z:7f53b99e-cd2c-4e3b-aed8-67974c6a67d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1995,7 +1995,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:04:48 GMT" + "Tue, 27 Oct 2020 02:06:20 GMT" ], "Expires": [ "-1" @@ -2008,15 +2008,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2028,7 +2028,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2037,13 +2037,13 @@ "11996" ], "x-ms-request-id": [ - "339704d9-b66b-401a-b948-b5296f4cc7ce" + "fa7cad5d-040f-45d6-8193-5882be4d6583" ], "x-ms-correlation-request-id": [ - "339704d9-b66b-401a-b948-b5296f4cc7ce" + "fa7cad5d-040f-45d6-8193-5882be4d6583" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220504Z:339704d9-b66b-401a-b948-b5296f4cc7ce" + "WESTUS:20201027T020636Z:fa7cad5d-040f-45d6-8193-5882be4d6583" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2052,7 +2052,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:05:03 GMT" + "Tue, 27 Oct 2020 02:06:36 GMT" ], "Expires": [ "-1" @@ -2065,15 +2065,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2085,7 +2085,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2094,13 +2094,13 @@ "11995" ], "x-ms-request-id": [ - "90cd7559-f561-4b7a-a0f8-752d8db7f562" + "652f06c0-57e7-4417-8194-5c083c5631e8" ], "x-ms-correlation-request-id": [ - "90cd7559-f561-4b7a-a0f8-752d8db7f562" + "652f06c0-57e7-4417-8194-5c083c5631e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220519Z:90cd7559-f561-4b7a-a0f8-752d8db7f562" + "WESTUS:20201027T020651Z:652f06c0-57e7-4417-8194-5c083c5631e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,7 +2109,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:05:19 GMT" + "Tue, 27 Oct 2020 02:06:51 GMT" ], "Expires": [ "-1" @@ -2122,15 +2122,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2142,7 +2142,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2151,13 +2151,13 @@ "11994" ], "x-ms-request-id": [ - "274ff190-643e-43b7-960b-c74969addd25" + "f8f16f13-d9ba-432f-a09f-136bacda95e6" ], "x-ms-correlation-request-id": [ - "274ff190-643e-43b7-960b-c74969addd25" + "f8f16f13-d9ba-432f-a09f-136bacda95e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220534Z:274ff190-643e-43b7-960b-c74969addd25" + "WESTUS:20201027T020706Z:f8f16f13-d9ba-432f-a09f-136bacda95e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2166,7 +2166,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:05:34 GMT" + "Tue, 27 Oct 2020 02:07:06 GMT" ], "Expires": [ "-1" @@ -2179,15 +2179,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2199,7 +2199,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2208,13 +2208,13 @@ "11993" ], "x-ms-request-id": [ - "dbf613de-34b5-48c1-9946-f5d1b80c7645" + "a512cb97-1ebe-4694-a88b-7ab41043efe8" ], "x-ms-correlation-request-id": [ - "dbf613de-34b5-48c1-9946-f5d1b80c7645" + "a512cb97-1ebe-4694-a88b-7ab41043efe8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220549Z:dbf613de-34b5-48c1-9946-f5d1b80c7645" + "WESTUS:20201027T020721Z:a512cb97-1ebe-4694-a88b-7ab41043efe8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2223,7 +2223,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:05:49 GMT" + "Tue, 27 Oct 2020 02:07:21 GMT" ], "Expires": [ "-1" @@ -2236,15 +2236,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2256,7 +2256,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2265,13 +2265,13 @@ "11992" ], "x-ms-request-id": [ - "38b788da-318d-4e3b-abe1-dd8bcd07d9b2" + "38cb9309-5290-4cf5-8e55-b5ea5c1b877d" ], "x-ms-correlation-request-id": [ - "38b788da-318d-4e3b-abe1-dd8bcd07d9b2" + "38cb9309-5290-4cf5-8e55-b5ea5c1b877d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220604Z:38b788da-318d-4e3b-abe1-dd8bcd07d9b2" + "WESTUS:20201027T020736Z:38cb9309-5290-4cf5-8e55-b5ea5c1b877d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2280,7 +2280,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:03 GMT" + "Tue, 27 Oct 2020 02:07:36 GMT" ], "Expires": [ "-1" @@ -2293,15 +2293,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2313,7 +2313,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2322,13 +2322,13 @@ "11991" ], "x-ms-request-id": [ - "299c9768-3408-46e3-9afe-b379934f03db" + "e45e5da7-c6c8-49d7-8c08-6117b8d0cbb4" ], "x-ms-correlation-request-id": [ - "299c9768-3408-46e3-9afe-b379934f03db" + "e45e5da7-c6c8-49d7-8c08-6117b8d0cbb4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220619Z:299c9768-3408-46e3-9afe-b379934f03db" + "WESTUS:20201027T020751Z:e45e5da7-c6c8-49d7-8c08-6117b8d0cbb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2337,7 +2337,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:18 GMT" + "Tue, 27 Oct 2020 02:07:51 GMT" ], "Expires": [ "-1" @@ -2350,15 +2350,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2370,7 +2370,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2379,13 +2379,13 @@ "11990" ], "x-ms-request-id": [ - "395ba52a-474f-4a0d-b14f-ec943a25f144" + "86cdf2ba-8048-4dec-9061-6267d1e45083" ], "x-ms-correlation-request-id": [ - "395ba52a-474f-4a0d-b14f-ec943a25f144" + "86cdf2ba-8048-4dec-9061-6267d1e45083" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220634Z:395ba52a-474f-4a0d-b14f-ec943a25f144" + "WESTUS:20201027T020806Z:86cdf2ba-8048-4dec-9061-6267d1e45083" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2394,7 +2394,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:33 GMT" + "Tue, 27 Oct 2020 02:08:06 GMT" ], "Expires": [ "-1" @@ -2407,15 +2407,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2430,13 +2430,13 @@ "11989" ], "x-ms-request-id": [ - "28a5272f-bd0d-4f44-8437-de3376fb4cce" + "fd6476cc-6422-4f29-9756-9af815f279bf" ], "x-ms-correlation-request-id": [ - "28a5272f-bd0d-4f44-8437-de3376fb4cce" + "fd6476cc-6422-4f29-9756-9af815f279bf" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220649Z:28a5272f-bd0d-4f44-8437-de3376fb4cce" + "WESTUS:20201027T020821Z:fd6476cc-6422-4f29-9756-9af815f279bf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2445,7 +2445,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:48 GMT" + "Tue, 27 Oct 2020 02:08:21 GMT" ], "Expires": [ "-1" @@ -2458,15 +2458,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDM5Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORE01TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAzMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF6TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2481,13 +2481,13 @@ "11988" ], "x-ms-request-id": [ - "3c99af0a-4b8b-4ef7-abfa-0d04f9b0f7a9" + "371d0dcf-d140-4ea7-a145-a91ea8d6ee17" ], "x-ms-correlation-request-id": [ - "3c99af0a-4b8b-4ef7-abfa-0d04f9b0f7a9" + "371d0dcf-d140-4ea7-a145-a91ea8d6ee17" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220649Z:3c99af0a-4b8b-4ef7-abfa-0d04f9b0f7a9" + "WESTUS:20201027T020822Z:371d0dcf-d140-4ea7-a145-a91ea8d6ee17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2496,7 +2496,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:06:48 GMT" + "Tue, 27 Oct 2020 02:08:21 GMT" ], "Expires": [ "-1" @@ -2511,12 +2511,12 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup4396" + "cdnResourceGroup4030" ], "EndpointGetListTest": [ - "profile2453", - "endpoint1730", - "endpoint8678" + "profile9635", + "endpoint7717", + "endpoint632" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointPurgeLoadTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointPurgeLoadTest.json index e7020083b891a..6b73e61f56fbe 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointPurgeLoadTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointPurgeLoadTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2fda8971-5cef-4172-b5c0-9183a589c2a8" + "20b31257-cd6b-4de1-bca4-4f2d829537dd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-request-id": [ - "2409ab5f-f6a5-4196-a570-325fd779e6ce" + "ac051933-8168-4d3e-bcb0-b460d4b3a6ab" ], "x-ms-correlation-request-id": [ - "2409ab5f-f6a5-4196-a570-325fd779e6ce" + "ac051933-8168-4d3e-bcb0-b460d4b3a6ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222105Z:2409ab5f-f6a5-4196-a570-325fd779e6ce" + "WESTUS:20201027T022238Z:ac051933-8168-4d3e-bcb0-b460d4b3a6ab" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:04 GMT" + "Tue, 27 Oct 2020 02:22:38 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947\",\r\n \"name\": \"cdnResourceGroup9947\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841\",\r\n \"name\": \"cdnResourceGroup1841\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "2a83b81b-82d3-47f0-8ac4-510485bf65a4" + "19921d55-4e01-40de-b119-0828cae68f90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "f8a846aa-0361-42a6-ad0e-2f8e276d8e6e" + "47e66f70-5da1-4d5a-8376-e9e58ceed6d0" ], "x-ms-client-request-id": [ - "2a83b81b-82d3-47f0-8ac4-510485bf65a4" + "19921d55-4e01-40de-b119-0828cae68f90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/ac22e0a4-da8e-4d74-83f3-9868611215c4?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/ccb347f9-78e5-4e55-b9bd-18d7d208e2d8?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "27e4e506-914d-4391-99d4-0abf5aa54e90" + "d2b25c37-1b70-4baa-9dce-d4fed546458c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222111Z:27e4e506-914d-4391-99d4-0abf5aa54e90" + "WESTUS:20201027T022244Z:d2b25c37-1b70-4baa-9dce-d4fed546458c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:11 GMT" + "Tue, 27 Oct 2020 02:22:44 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6302\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/ac22e0a4-da8e-4d74-83f3-9868611215c4?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWMyMmUwYTQtZGE4ZS00ZDc0LTgzZjMtOTg2ODYxMTIxNWM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/ccb347f9-78e5-4e55-b9bd-18d7d208e2d8?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2NiMzQ3ZjktNzhlNS00ZTU1LWI5YmQtMThkN2QyMDhlMmQ4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "32495167-7bf3-46c6-ae97-149fa1a959fa" + "12771308-0735-426e-8710-5abc4589606c" ], "x-ms-client-request-id": [ - "c7f42df1-94ba-462d-b8d8-8b36cb9bea57" + "16517cc1-a8b0-4d11-a230-ebc3bdec872c" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "1883885b-086e-4e59-8315-cc9c30f1e9ca" + "956da2b4-c0b0-4267-9723-9de40b2b10de" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222121Z:1883885b-086e-4e59-8315-cc9c30f1e9ca" + "WESTUS:20201027T022254Z:956da2b4-c0b0-4267-9723-9de40b2b10de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:21 GMT" + "Tue, 27 Oct 2020 02:22:54 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/ac22e0a4-da8e-4d74-83f3-9868611215c4?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWMyMmUwYTQtZGE4ZS00ZDc0LTgzZjMtOTg2ODYxMTIxNWM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/ccb347f9-78e5-4e55-b9bd-18d7d208e2d8?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2NiMzQ3ZjktNzhlNS00ZTU1LWI5YmQtMThkN2QyMDhlMmQ4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "e6cf50ab-4095-4414-a3c3-0ca544eaa105" + "994e97de-932c-4bbb-9684-803e7ab8531a" ], "x-ms-client-request-id": [ - "6e3d7358-da7e-4186-b8ff-76c0c12a7a03" + "dd2f1ae0-0b06-41d1-8a3c-789aa33781b3" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "9281879d-53dd-4d36-8cd9-86bfb11b22e7" + "6b2ec746-4c22-4b22-8571-a454c703b8bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222131Z:9281879d-53dd-4d36-8cd9-86bfb11b22e7" + "WESTUS:20201027T022305Z:6b2ec746-4c22-4b22-8571-a454c703b8bd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:31 GMT" + "Tue, 27 Oct 2020 02:23:04 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/ac22e0a4-da8e-4d74-83f3-9868611215c4?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWMyMmUwYTQtZGE4ZS00ZDc0LTgzZjMtOTg2ODYxMTIxNWM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/ccb347f9-78e5-4e55-b9bd-18d7d208e2d8?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2NiMzQ3ZjktNzhlNS00ZTU1LWI5YmQtMThkN2QyMDhlMmQ4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "583d4b21-bc68-459a-a3c5-3190539c3f41" + "56988a9d-b4cc-4146-946c-10856fecb984" ], "x-ms-client-request-id": [ - "cfaf4534-612f-4984-9e5f-0e1c2b19020a" + "1c69adc2-335a-40fc-bab2-acd7b70903a4" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "e640ad6d-27ee-468b-9c36-017170bf1df3" + "e2b87fbc-1f7a-4b37-9196-0df5cd9160fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222142Z:e640ad6d-27ee-468b-9c36-017170bf1df3" + "WESTUS:20201027T022315Z:e2b87fbc-1f7a-4b37-9196-0df5cd9160fc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:41 GMT" + "Tue, 27 Oct 2020 02:23:15 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "3683b79a-230b-4bc9-8b8e-46aa3213e0a7" + "f0fc290c-4b61-4c6a-935e-d77459e77cd5" ], "x-ms-client-request-id": [ - "a1826d28-03e3-4863-8b72-959e331c694b" + "d6e23ff4-dac8-4f65-a5e3-db31462f564a" ], "OData-Version": [ "4.0" @@ -405,16 +405,16 @@ "49" ], "x-ms-correlation-request-id": [ - "730f25b6-5dca-42e2-bbd1-94fc73f56b85" + "ee2f2f8b-e69d-4b94-9bc8-ae906c995f2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222143Z:730f25b6-5dca-42e2-bbd1-94fc73f56b85" + "WESTUS:20201027T022316Z:ee2f2f8b-e69d-4b94-9bc8-ae906c995f2c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:42 GMT" + "Tue, 27 Oct 2020 02:23:16 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6302\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/photos\",\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/photos\",\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5af2559a-dd9d-4f53-a229-47bbadc5d953" + "2893e0a3-9ac5-4ec9-aa5a-83022f7ba8df" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +465,13 @@ "10" ], "x-ms-request-id": [ - "73a0da3f-48e0-4fc6-88a8-b8e99742b6f1" + "ff832575-966a-4041-82d7-617c5bec0352" ], "x-ms-client-request-id": [ - "5af2559a-dd9d-4f53-a229-47bbadc5d953" + "2893e0a3-9ac5-4ec9-aa5a-83022f7ba8df" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8d69a6ca-1f16-4c6e-8555-d3ad493425b0?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/346000ae-bba8-4c63-a922-45061a975cee?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -492,16 +492,16 @@ "99" ], "x-ms-correlation-request-id": [ - "c44453e6-4038-4c37-89b9-c3e1fd524ddf" + "359f70e5-f1b0-400a-84ec-ab71da980ae0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222147Z:c44453e6-4038-4c37-89b9-c3e1fd524ddf" + "WESTUS:20201027T022320Z:359f70e5-f1b0-400a-84ec-ab71da980ae0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:46 GMT" + "Tue, 27 Oct 2020 02:23:19 GMT" ], "Content-Length": [ "1289" @@ -513,20 +513,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8d69a6ca-1f16-4c6e-8555-d3ad493425b0?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGQ2OWE2Y2EtMWYxNi00YzZlLTg1NTUtZDNhZDQ5MzQyNWIwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/346000ae-bba8-4c63-a922-45061a975cee?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzQ2MDAwYWUtYmJhOC00YzYzLWE5MjItNDUwNjFhOTc1Y2VlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "7b4d3333-3fce-4edd-9c03-29b6707b6cc8" + "a1fe2f58-b7ad-42b7-b7c4-0e5484fd180e" ], "x-ms-client-request-id": [ - "87c3954d-fecf-44b8-a3d3-c6c015bc3a23" + "8450a1c7-5a03-4b5f-ac5a-c8dc404090e9" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "de594ef0-df4c-42cb-91bc-f9a8f1a1f4c0" + "64eaa05b-c7f3-4ffe-8f52-2ee433076e36" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222157Z:de594ef0-df4c-42cb-91bc-f9a8f1a1f4c0" + "WESTUS:20201027T022330Z:64eaa05b-c7f3-4ffe-8f52-2ee433076e36" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:57 GMT" + "Tue, 27 Oct 2020 02:23:30 GMT" ], "Content-Length": [ "78" @@ -586,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8d69a6ca-1f16-4c6e-8555-d3ad493425b0?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGQ2OWE2Y2EtMWYxNi00YzZlLTg1NTUtZDNhZDQ5MzQyNWIwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/346000ae-bba8-4c63-a922-45061a975cee?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzQ2MDAwYWUtYmJhOC00YzYzLWE5MjItNDUwNjFhOTc1Y2VlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "e02e5e50-9455-4af2-a96e-99411bf97cdd" + "01fa6b91-be1e-4711-acb5-fde437eea1b3" ], "x-ms-client-request-id": [ - "44ac5f19-4af4-44f3-bb22-d773134888af" + "a961648f-b690-4623-ab22-85b3171599cd" ], "OData-Version": [ "4.0" @@ -630,16 +630,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "63ff25de-1685-4b6b-84e2-6a63d37f6337" + "bcce9df9-db93-4dd0-827d-d690720f261c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222207Z:63ff25de-1685-4b6b-84e2-6a63d37f6337" + "WESTUS:20201027T022340Z:bcce9df9-db93-4dd0-827d-d690720f261c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:07 GMT" + "Tue, 27 Oct 2020 02:23:40 GMT" ], "Content-Length": [ "77" @@ -655,16 +655,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +675,10 @@ "no-cache" ], "x-ms-request-id": [ - "1e3937ec-87ab-44da-b148-17e623e1f593" + "195753bd-56a9-4898-84b9-ef7ae9fec98d" ], "x-ms-client-request-id": [ - "09544dbb-6663-4f47-ab24-4f2a19563924" + "05294975-d690-4ce1-94e0-ef59f162fb8a" ], "OData-Version": [ "4.0" @@ -699,16 +699,16 @@ "49" ], "x-ms-correlation-request-id": [ - "474b58df-19c6-440a-b87b-14627e055798" + "b47c44a9-147c-4ea4-925c-f95c80a763b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222208Z:474b58df-19c6-440a-b87b-14627e055798" + "WESTUS:20201027T022342Z:b47c44a9-147c-4ea4-925c-f95c80a763b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:08 GMT" + "Tue, 27 Oct 2020 02:23:41 GMT" ], "Content-Length": [ "1289" @@ -720,26 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "319be07e-3bd2-410f-95b8-2bcad892a24d" + "6646e176-fe45-43cb-97a7-e45a03b94842" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -750,10 +750,10 @@ "no-cache" ], "x-ms-request-id": [ - "70e743fc-0bb0-449a-8242-2f359467c9bb" + "48d37f3d-aef2-4d37-b658-92930b850b68" ], "x-ms-client-request-id": [ - "319be07e-3bd2-410f-95b8-2bcad892a24d" + "6646e176-fe45-43cb-97a7-e45a03b94842" ], "OData-Version": [ "4.0" @@ -771,19 +771,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "48" ], "x-ms-correlation-request-id": [ - "6ca48524-b173-4251-99cb-a789c813e03d" + "a1cb7ddc-34ff-4b74-962f-aeaf876f578e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224222Z:6ca48524-b173-4251-99cb-a789c813e03d" + "WESTUS:20201027T022944Z:a1cb7ddc-34ff-4b74-962f-aeaf876f578e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:42:22 GMT" + "Tue, 27 Oct 2020 02:29:43 GMT" ], "Content-Length": [ "1289" @@ -795,26 +795,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopped\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopped\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/purge?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/purge?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/*\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "40a6535d-7958-4d95-a29d-28376ef1d1d9" + "08c26e67-23f6-40f5-8368-0d7d30fef981" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -831,19 +831,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "f7d76162-b580-4319-8fe2-2e519607aa8d" + "a2008bc9-d8f3-4956-82f0-cc5f3276b5c8" ], "x-ms-client-request-id": [ - "40a6535d-7958-4d95-a29d-28376ef1d1d9" + "08c26e67-23f6-40f5-8368-0d7d30fef981" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -861,16 +861,16 @@ "499" ], "x-ms-correlation-request-id": [ - "589066d7-6fff-499a-8790-d1da17b4c653" + "bc08cd7f-da92-4fa9-8cec-436a24f44596" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222211Z:589066d7-6fff-499a-8790-d1da17b4c653" + "WESTUS:20201027T022344Z:bc08cd7f-da92-4fa9-8cec-436a24f44596" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:11 GMT" + "Tue, 27 Oct 2020 02:23:43 GMT" ], "Expires": [ "-1" @@ -883,22 +883,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/purge?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/purge?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"invalidpath!\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "068f2d86-4163-4a50-8e98-0770ba047dc0" + "56182f43-f57c-48c5-b713-4b578ccf488b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,10 +915,10 @@ "no-cache" ], "x-ms-request-id": [ - "0d488dac-0251-46c0-8542-7ec0f9c318a5" + "0d5b1322-f917-4c96-9898-b1ab31394b97" ], "x-ms-client-request-id": [ - "068f2d86-4163-4a50-8e98-0770ba047dc0" + "56182f43-f57c-48c5-b713-4b578ccf488b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,16 +936,16 @@ "497" ], "x-ms-correlation-request-id": [ - "17676c19-d51e-4adf-8c0a-98e4a839426a" + "ac01dbd4-c37f-4fc1-ac85-5b8df9850d98" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222427Z:17676c19-d51e-4adf-8c0a-98e4a839426a" + "WESTUS:20201027T022559Z:ac01dbd4-c37f-4fc1-ac85-5b8df9850d98" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:27 GMT" + "Tue, 27 Oct 2020 02:25:59 GMT" ], "Content-Length": [ "235" @@ -964,22 +964,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/purge?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/purge?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/*\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a0e06e86-27e5-418c-a5cc-a452f9ad58ca" + "3812b640-3303-49a2-b687-867283d30ffd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,10 +996,10 @@ "no-cache" ], "x-ms-request-id": [ - "4d6d0f67-edd6-485d-931d-1b6cee6d4582" + "fd5f8bb9-02e1-485d-96e3-640bc2bd155f" ], "x-ms-client-request-id": [ - "a0e06e86-27e5-418c-a5cc-a452f9ad58ca" + "3812b640-3303-49a2-b687-867283d30ffd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1014,19 +1014,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "499" + "496" ], "x-ms-correlation-request-id": [ - "9feaa5ed-4f2d-467d-a776-a8ea63e3b092" + "cac685f7-500a-46b9-8558-125eb164609f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224224Z:9feaa5ed-4f2d-467d-a776-a8ea63e3b092" + "WESTUS:20201027T022945Z:cac685f7-500a-46b9-8558-125eb164609f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:42:23 GMT" + "Tue, 27 Oct 2020 02:29:44 GMT" ], "Content-Length": [ "147" @@ -1045,16 +1045,16 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1065,10 +1065,10 @@ "no-cache" ], "x-ms-request-id": [ - "21c05afe-f130-4622-a46e-7615829ea023" + "eca59c93-28f7-42ff-aa70-c0c39a2bd2f8" ], "x-ms-client-request-id": [ - "493a3adf-ec34-4cec-b263-7359f2955e45" + "f1d3e11e-6239-4e31-a407-7fd6e3cd6186" ], "OData-Version": [ "4.0" @@ -1089,16 +1089,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "36b6971b-cec2-40bb-a1bb-175bab8cd986" + "494110ee-bed9-4dc1-b24f-06ce9fe12179" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222222Z:36b6971b-cec2-40bb-a1bb-175bab8cd986" + "WESTUS:20201027T022354Z:494110ee-bed9-4dc1-b24f-06ce9fe12179" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:21 GMT" + "Tue, 27 Oct 2020 02:23:53 GMT" ], "Content-Length": [ "78" @@ -1114,16 +1114,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1134,10 +1134,10 @@ "no-cache" ], "x-ms-request-id": [ - "35414ac6-25f2-4bb8-ac76-66b805cfc2a4" + "fc0c0fc8-4192-47c7-ad72-3497482d9850" ], "x-ms-client-request-id": [ - "4ffb1454-a8df-4cf0-993c-76f89c13628e" + "9def8bd7-73e4-40bc-8c39-963f145cd264" ], "OData-Version": [ "4.0" @@ -1158,16 +1158,16 @@ "11993" ], "x-ms-correlation-request-id": [ - "2c8ee6bf-3a1c-41ef-8f5f-50d8d7c69cc1" + "d6235ec2-fec4-45ae-bbe8-ae85e60fe0fd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222232Z:2c8ee6bf-3a1c-41ef-8f5f-50d8d7c69cc1" + "WESTUS:20201027T022404Z:d6235ec2-fec4-45ae-bbe8-ae85e60fe0fd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:31 GMT" + "Tue, 27 Oct 2020 02:24:03 GMT" ], "Content-Length": [ "78" @@ -1183,16 +1183,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1203,10 +1203,10 @@ "no-cache" ], "x-ms-request-id": [ - "110e2c0c-5449-47b2-b3e2-866632b87f77" + "42eff391-0fac-4248-86e8-36c8a529ed0c" ], "x-ms-client-request-id": [ - "1b815ac7-d038-4652-84de-8a561c8e5252" + "d59662f9-b4c8-4696-94f8-f5b03dd3b332" ], "OData-Version": [ "4.0" @@ -1227,16 +1227,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "a7fff17d-bcd7-401f-8962-2fa821452b01" + "a3f8b610-941a-4164-b5c8-7ceba5cc3852" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222242Z:a7fff17d-bcd7-401f-8962-2fa821452b01" + "WESTUS:20201027T022414Z:a3f8b610-941a-4164-b5c8-7ceba5cc3852" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:42 GMT" + "Tue, 27 Oct 2020 02:24:14 GMT" ], "Content-Length": [ "78" @@ -1252,16 +1252,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1272,10 +1272,10 @@ "no-cache" ], "x-ms-request-id": [ - "6d19ae26-699c-45fd-ac80-019d9101cade" + "16179fea-ce43-45b0-99bb-0bd45be61ea1" ], "x-ms-client-request-id": [ - "ac99ff79-9de1-4d48-a47c-8ef905c5982a" + "cc0c1e0e-0adb-4f0d-919e-3f3058d42779" ], "OData-Version": [ "4.0" @@ -1296,16 +1296,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "86296caf-a329-4d05-a3f6-09047e0fffc6" + "96b846ba-8714-46e3-8c0c-181a9ee308ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222253Z:86296caf-a329-4d05-a3f6-09047e0fffc6" + "WESTUS:20201027T022425Z:96b846ba-8714-46e3-8c0c-181a9ee308ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:22:52 GMT" + "Tue, 27 Oct 2020 02:24:24 GMT" ], "Content-Length": [ "78" @@ -1321,16 +1321,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1341,10 +1341,10 @@ "no-cache" ], "x-ms-request-id": [ - "1fb894da-6c69-4724-b796-0e5e241961d7" + "e3a95f38-d87d-43e9-b70f-1c6a8411f77f" ], "x-ms-client-request-id": [ - "3ae67148-36ae-4d61-9de5-53ba374319ed" + "58401e29-6816-49b8-8e80-d0a3f32b3b1f" ], "OData-Version": [ "4.0" @@ -1365,16 +1365,16 @@ "11990" ], "x-ms-correlation-request-id": [ - "bbe224c6-1e9c-4376-99c4-4425eedc8973" + "7a07ec42-708b-444c-8b07-ed6a0ecaf3c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222303Z:bbe224c6-1e9c-4376-99c4-4425eedc8973" + "WESTUS:20201027T022435Z:7a07ec42-708b-444c-8b07-ed6a0ecaf3c0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:02 GMT" + "Tue, 27 Oct 2020 02:24:34 GMT" ], "Content-Length": [ "78" @@ -1390,16 +1390,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1410,10 +1410,10 @@ "no-cache" ], "x-ms-request-id": [ - "f93266e3-d897-43da-9a52-5cc59c0f70a6" + "d9fa38c2-6da5-491a-896b-a3aa511b3546" ], "x-ms-client-request-id": [ - "ce16ff82-60e2-4085-9003-3e8a45afdb80" + "a0362f6e-3111-4d7a-8315-6325734ecd10" ], "OData-Version": [ "4.0" @@ -1434,16 +1434,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "80273e01-ae20-4f23-b183-e7a8e3905a07" + "59671231-b54a-4668-9c0c-4f7c23a8a2f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222313Z:80273e01-ae20-4f23-b183-e7a8e3905a07" + "WESTUS:20201027T022445Z:59671231-b54a-4668-9c0c-4f7c23a8a2f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:12 GMT" + "Tue, 27 Oct 2020 02:24:45 GMT" ], "Content-Length": [ "78" @@ -1459,16 +1459,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1479,10 +1479,10 @@ "no-cache" ], "x-ms-request-id": [ - "714261f9-f2dd-4dbe-92d0-dba282d224bf" + "2815e8e9-aa44-4505-ba49-254974c3d44e" ], "x-ms-client-request-id": [ - "8f7353b5-6a24-432d-9507-2caef26d11d0" + "2aeb1041-d4d5-413c-824c-2723a4a49cd5" ], "OData-Version": [ "4.0" @@ -1503,16 +1503,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "515eee11-ae5e-4607-9ec9-272cfa1bb296" + "e5c0284f-a3ac-4cb6-8c25-01be3bff04e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222323Z:515eee11-ae5e-4607-9ec9-272cfa1bb296" + "WESTUS:20201027T022456Z:e5c0284f-a3ac-4cb6-8c25-01be3bff04e6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:23 GMT" + "Tue, 27 Oct 2020 02:24:55 GMT" ], "Content-Length": [ "78" @@ -1528,16 +1528,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1548,10 +1548,10 @@ "no-cache" ], "x-ms-request-id": [ - "c6174ac5-b805-43d5-a76b-42b2ed644295" + "0e282f97-be4d-4999-b442-6c8ae8c57df2" ], "x-ms-client-request-id": [ - "92d821d5-46de-4799-a737-dd3927f6e4f6" + "500061c0-7af0-4f0a-838a-e5c1bb071321" ], "OData-Version": [ "4.0" @@ -1572,16 +1572,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "b270648e-af90-47ec-8d96-5c98eb9c1d65" + "2225b6fd-cb54-4a04-849c-2220ec502c90" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222334Z:b270648e-af90-47ec-8d96-5c98eb9c1d65" + "WESTUS:20201027T022506Z:2225b6fd-cb54-4a04-849c-2220ec502c90" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:33 GMT" + "Tue, 27 Oct 2020 02:25:06 GMT" ], "Content-Length": [ "78" @@ -1597,16 +1597,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1617,10 +1617,10 @@ "no-cache" ], "x-ms-request-id": [ - "80ed917e-0dc7-44cc-9381-9934acf5536d" + "40b90f46-e89e-47e0-b528-5799f3d3a5bb" ], "x-ms-client-request-id": [ - "e0322844-f498-4d38-87ed-42f9c549389d" + "fca8018a-131a-435e-b64d-365e584e9538" ], "OData-Version": [ "4.0" @@ -1641,16 +1641,16 @@ "11986" ], "x-ms-correlation-request-id": [ - "195ee69c-582a-49fa-9cd6-455ba0b056b4" + "6594a0e1-fce9-4bf0-ac96-0a0aa27ff7f1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222344Z:195ee69c-582a-49fa-9cd6-455ba0b056b4" + "WESTUS:20201027T022516Z:6594a0e1-fce9-4bf0-ac96-0a0aa27ff7f1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:43 GMT" + "Tue, 27 Oct 2020 02:25:16 GMT" ], "Content-Length": [ "78" @@ -1666,16 +1666,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1686,10 +1686,10 @@ "no-cache" ], "x-ms-request-id": [ - "f1ecc1ce-85c5-4f58-9bed-ae31559d9d47" + "72a79de3-ab69-466c-90eb-63c3d767ebf2" ], "x-ms-client-request-id": [ - "2eba7a92-3598-4cbc-a301-d295a1a48f44" + "94701eea-f933-4802-a2c2-b2fa5a145c30" ], "OData-Version": [ "4.0" @@ -1710,16 +1710,16 @@ "11985" ], "x-ms-correlation-request-id": [ - "01bb7e17-8da6-4a05-8f2d-bc853f5dc539" + "6ce6e86e-6059-4dc8-8c18-339fd087e0b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222354Z:01bb7e17-8da6-4a05-8f2d-bc853f5dc539" + "WESTUS:20201027T022527Z:6ce6e86e-6059-4dc8-8c18-339fd087e0b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:23:54 GMT" + "Tue, 27 Oct 2020 02:25:26 GMT" ], "Content-Length": [ "78" @@ -1735,16 +1735,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1755,10 +1755,10 @@ "no-cache" ], "x-ms-request-id": [ - "34dd1628-c566-4af6-9f0c-cfe4a48282e0" + "770e5f8f-3a25-4d7a-afa6-83de9a0e7861" ], "x-ms-client-request-id": [ - "35d4ddf5-1480-429d-9566-1103554c7f90" + "06be3f7d-d775-4337-81d3-281604218a4f" ], "OData-Version": [ "4.0" @@ -1779,16 +1779,16 @@ "11984" ], "x-ms-correlation-request-id": [ - "acbbfd86-2ad5-49cd-a2f6-8a9bbfe94336" + "158f92a6-fe59-4ffe-abc7-ae53bedcccd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222405Z:acbbfd86-2ad5-49cd-a2f6-8a9bbfe94336" + "WESTUS:20201027T022537Z:158f92a6-fe59-4ffe-abc7-ae53bedcccd5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:05 GMT" + "Tue, 27 Oct 2020 02:25:37 GMT" ], "Content-Length": [ "78" @@ -1804,16 +1804,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1824,10 +1824,10 @@ "no-cache" ], "x-ms-request-id": [ - "73a4ea84-e9f6-43b1-bbd0-4c3ca1eca480" + "8f4c33c2-9360-4ecc-96ea-712ccf182714" ], "x-ms-client-request-id": [ - "2595705d-a38a-4dd0-9b7c-44a3569ba3a0" + "0c1cdc71-6cd8-45ac-b099-efbd76925c25" ], "OData-Version": [ "4.0" @@ -1848,16 +1848,16 @@ "11983" ], "x-ms-correlation-request-id": [ - "50a44c70-f0f7-40c6-a2a4-e65fdeb21243" + "b829e41d-4f62-4631-b91b-dd454fda201d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222415Z:50a44c70-f0f7-40c6-a2a4-e65fdeb21243" + "WESTUS:20201027T022547Z:b829e41d-4f62-4631-b91b-dd454fda201d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:15 GMT" + "Tue, 27 Oct 2020 02:25:47 GMT" ], "Content-Length": [ "78" @@ -1873,16 +1873,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1893,10 +1893,10 @@ "no-cache" ], "x-ms-request-id": [ - "1788ff93-ef7d-47ae-b072-dc9f2b024801" + "b85941e0-ab1e-4b8c-addd-32f67ff57918" ], "x-ms-client-request-id": [ - "e7e79644-783e-461b-be14-7db06e2045a3" + "a05c605f-b918-49c5-8c2f-b81bb82a5339" ], "OData-Version": [ "4.0" @@ -1917,16 +1917,16 @@ "11982" ], "x-ms-correlation-request-id": [ - "1e96deb7-cd3d-4a3a-abcf-b6fc4263a6da" + "10bda519-1d63-402c-b221-9e1d1fdc095a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222425Z:1e96deb7-cd3d-4a3a-abcf-b6fc4263a6da" + "WESTUS:20201027T022557Z:10bda519-1d63-402c-b221-9e1d1fdc095a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:25 GMT" + "Tue, 27 Oct 2020 02:25:57 GMT" ], "Content-Length": [ "77" @@ -1942,16 +1942,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWYzNWY2M2QtZGNmMy00ODhmLWIwZGUtNTFkMGE0Yzg0MGQ3L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTdmMWNmMjItMjcxOS00ZTIzLWIzMmMtNTMxZDNkZTRmY2IxL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1962,10 +1962,10 @@ "no-cache" ], "x-ms-request-id": [ - "26d4cb5e-2240-4532-9c01-8b94d358e553" + "f7eac528-dbf5-42b2-a50d-543d93e1e350" ], "x-ms-client-request-id": [ - "d284360f-ebf4-4df0-853d-9a74b39110ae" + "ddde45a7-c229-45af-b4e8-672be5fd4c3d" ], "OData-Version": [ "4.0" @@ -1986,16 +1986,16 @@ "11981" ], "x-ms-correlation-request-id": [ - "d39933eb-b4f3-4e6b-98e6-1ff489887165" + "699011dc-4e2e-49e4-b8ed-dc3351035ae8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222426Z:d39933eb-b4f3-4e6b-98e6-1ff489887165" + "WESTUS:20201027T022558Z:699011dc-4e2e-49e4-b8ed-dc3351035ae8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:26 GMT" + "Tue, 27 Oct 2020 02:25:58 GMT" ], "Content-Length": [ "1384" @@ -2007,26 +2007,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/af35f63d-dcf3-488f-b0de-51d0a4c840d7/profileresults/profile6302/endpointresults/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/17f1cf22-2719-4e23-b32c-531d3de4fcb1/profileresults/profile6218/endpointresults/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/fakeEndpoint/purge?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9mYWtlRW5kcG9pbnQvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/fakeEndpoint/purge?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9mYWtlRW5kcG9pbnQvcHVyZ2U/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/*\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c8ae32d1-2447-4076-a201-6ac6c82eca05" + "d9c1feb3-f3f2-4aad-8283-91c5a5ab4ca4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2046,13 +2046,13 @@ "gateway" ], "x-ms-request-id": [ - "17ff40d0-7437-4e09-8781-55fbc2ca5d48" + "719c5361-081c-4f20-a9cb-f49e8c3ea71a" ], "x-ms-correlation-request-id": [ - "17ff40d0-7437-4e09-8781-55fbc2ca5d48" + "719c5361-081c-4f20-a9cb-f49e8c3ea71a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222426Z:17ff40d0-7437-4e09-8781-55fbc2ca5d48" + "WESTUS:20201027T022558Z:719c5361-081c-4f20-a9cb-f49e8c3ea71a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2061,7 +2061,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:26 GMT" + "Tue, 27 Oct 2020 02:25:58 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2073,26 +2073,26 @@ "249" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cdn/profiles/profile6302/endpoints/fakeEndpoint' under resource group 'cdnResourceGroup9947' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cdn/profiles/profile6218/endpoints/fakeEndpoint' under resource group 'cdnResourceGroup1841' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/load?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/load?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/amazing.mp4\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b5aab569-107f-4cd0-8cbc-abae5a05e188" + "c02078b7-bdcd-4fde-bcb3-1d25852bdf99" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2109,19 +2109,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "0fc70bb7-f042-4e3c-ba25-6a53b1843c4e" + "d3251e59-81fc-4c0b-b266-67c905786236" ], "x-ms-client-request-id": [ - "b5aab569-107f-4cd0-8cbc-abae5a05e188" + "c02078b7-bdcd-4fde-bcb3-1d25852bdf99" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2139,16 +2139,16 @@ "499" ], "x-ms-correlation-request-id": [ - "2d18dd9b-6eb0-4a35-a9a5-fcd851e181e4" + "f57f1f26-d26b-41ea-a1b4-4eddfe8e2dbc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222431Z:2d18dd9b-6eb0-4a35-a9a5-fcd851e181e4" + "WESTUS:20201027T022601Z:f57f1f26-d26b-41ea-a1b4-4eddfe8e2dbc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:31 GMT" + "Tue, 27 Oct 2020 02:26:01 GMT" ], "Expires": [ "-1" @@ -2161,22 +2161,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/load?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/load?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/*\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "196d8317-40bc-47e6-ae0f-192563e41950" + "235e2aa7-617c-455e-8ed8-edcf6561e8ae" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2193,10 +2193,10 @@ "no-cache" ], "x-ms-request-id": [ - "b80ad8a2-a20e-44c3-ac72-865f3b64504e" + "4cb2937b-0540-4427-9173-4f7a88c2ca1e" ], "x-ms-client-request-id": [ - "196d8317-40bc-47e6-ae0f-192563e41950" + "235e2aa7-617c-455e-8ed8-edcf6561e8ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2211,19 +2211,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "498" + "497" ], "x-ms-correlation-request-id": [ - "afed560f-a9ef-4fc4-b3af-cc101d926e83" + "3e3d4da7-49c8-4559-b654-2bcb52f4091f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224156Z:afed560f-a9ef-4fc4-b3af-cc101d926e83" + "WESTUS:20201027T022919Z:3e3d4da7-49c8-4559-b654-2bcb52f4091f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:41:55 GMT" + "Tue, 27 Oct 2020 02:29:18 GMT" ], "Content-Length": [ "196" @@ -2242,22 +2242,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/load?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/load?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/amazing.mp4\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0d209284-2027-4c0f-b7ff-3a8787ef2589" + "6b518873-6b22-4d9c-a19a-a78a5d55f319" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -2274,10 +2274,10 @@ "no-cache" ], "x-ms-request-id": [ - "48401248-03ac-4910-9800-3d2ae06283bd" + "eee8641b-9dae-4fe2-b104-70620c20ff2d" ], "x-ms-client-request-id": [ - "0d209284-2027-4c0f-b7ff-3a8787ef2589" + "6b518873-6b22-4d9c-a19a-a78a5d55f319" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2292,19 +2292,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "497" + "496" ], "x-ms-correlation-request-id": [ - "8c4bc488-51ee-4ce3-99b1-60fcf11865f0" + "bb4b6e9f-8171-44ec-b53e-f388028e845c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224225Z:8c4bc488-51ee-4ce3-99b1-60fcf11865f0" + "WESTUS:20201027T022946Z:bb4b6e9f-8171-44ec-b53e-f388028e845c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:42:24 GMT" + "Tue, 27 Oct 2020 02:29:45 GMT" ], "Content-Length": [ "147" @@ -2323,16 +2323,16 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2343,10 +2343,10 @@ "no-cache" ], "x-ms-request-id": [ - "43d609f2-3865-4305-b369-302a603bbc11" + "4a4f9843-95dd-4aad-bc83-8757697ee90d" ], "x-ms-client-request-id": [ - "eb3a63e3-c845-4076-9e83-1e3ed7bf1f75" + "80f8cc0f-198a-4577-92da-101f783a9937" ], "OData-Version": [ "4.0" @@ -2367,16 +2367,16 @@ "11980" ], "x-ms-correlation-request-id": [ - "6b386955-a720-4c84-b261-fb1101d8885c" + "864e17be-d642-4670-9656-fa71d11e1206" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222442Z:6b386955-a720-4c84-b261-fb1101d8885c" + "WESTUS:20201027T022612Z:864e17be-d642-4670-9656-fa71d11e1206" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:42 GMT" + "Tue, 27 Oct 2020 02:26:11 GMT" ], "Content-Length": [ "78" @@ -2392,16 +2392,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2412,10 +2412,10 @@ "no-cache" ], "x-ms-request-id": [ - "579c1742-4304-464a-ba5e-6719acf64ac9" + "7ef0aef2-3c52-41f4-bb3e-09ffd7b8ca68" ], "x-ms-client-request-id": [ - "dc9e637d-9e28-4193-8049-5a9004f8f3b7" + "79c066a8-d665-4a34-bb0a-fe21ecefeae9" ], "OData-Version": [ "4.0" @@ -2436,16 +2436,16 @@ "11979" ], "x-ms-correlation-request-id": [ - "feb65be4-0450-4338-96a6-0c3070938a95" + "5e20c5f2-1bfe-4af1-9396-6e75aa933434" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222452Z:feb65be4-0450-4338-96a6-0c3070938a95" + "WESTUS:20201027T022622Z:5e20c5f2-1bfe-4af1-9396-6e75aa933434" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:24:52 GMT" + "Tue, 27 Oct 2020 02:26:22 GMT" ], "Content-Length": [ "78" @@ -2461,16 +2461,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2481,10 +2481,10 @@ "no-cache" ], "x-ms-request-id": [ - "9f26dcf1-60a5-4403-ae70-14ae2d60e874" + "cf8eafe0-f4fa-4196-be68-e568f715d957" ], "x-ms-client-request-id": [ - "9762555c-098c-4fa7-9d3d-3d9886fcf041" + "29e44477-611d-40d6-853b-77492765a0ae" ], "OData-Version": [ "4.0" @@ -2505,16 +2505,16 @@ "11978" ], "x-ms-correlation-request-id": [ - "0e381715-ec40-46b6-b8fd-2d884d044eaf" + "3dce1acd-b1ab-4518-841a-624475598f5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222502Z:0e381715-ec40-46b6-b8fd-2d884d044eaf" + "WESTUS:20201027T022632Z:3dce1acd-b1ab-4518-841a-624475598f5e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:02 GMT" + "Tue, 27 Oct 2020 02:26:32 GMT" ], "Content-Length": [ "78" @@ -2530,16 +2530,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2550,10 +2550,10 @@ "no-cache" ], "x-ms-request-id": [ - "d6c478d0-a5f9-403e-bf50-be7e4a9e9b49" + "c2cdfa5c-6346-4c92-a666-c3b5552947fc" ], "x-ms-client-request-id": [ - "dffe42e4-cd97-4296-b716-8bc04bf3f682" + "35033f48-5ee5-4248-96f9-4b3945e48da6" ], "OData-Version": [ "4.0" @@ -2574,16 +2574,16 @@ "11977" ], "x-ms-correlation-request-id": [ - "96e67be6-6e61-459c-82cf-263f44963820" + "9528e9a5-447a-4c4f-ada8-2b14be91ae00" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222513Z:96e67be6-6e61-459c-82cf-263f44963820" + "WESTUS:20201027T022643Z:9528e9a5-447a-4c4f-ada8-2b14be91ae00" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:12 GMT" + "Tue, 27 Oct 2020 02:26:42 GMT" ], "Content-Length": [ "78" @@ -2599,16 +2599,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2619,10 +2619,10 @@ "no-cache" ], "x-ms-request-id": [ - "bac9be7b-acbf-491c-8b1a-8ddfa780d01a" + "8459d65b-7886-4406-ac7e-a01d29513cbc" ], "x-ms-client-request-id": [ - "0ec1a140-6977-4e80-a4c0-8dd60e9a35fd" + "85de78ea-21ce-4ae7-8e79-f9c8c1d5d015" ], "OData-Version": [ "4.0" @@ -2643,16 +2643,16 @@ "11976" ], "x-ms-correlation-request-id": [ - "82021566-8d79-4b90-b51a-59242c86a294" + "49b5ae0a-bd19-46d6-9787-09d3241bece5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222523Z:82021566-8d79-4b90-b51a-59242c86a294" + "WESTUS:20201027T022653Z:49b5ae0a-bd19-46d6-9787-09d3241bece5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:22 GMT" + "Tue, 27 Oct 2020 02:26:52 GMT" ], "Content-Length": [ "78" @@ -2668,16 +2668,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2688,10 +2688,10 @@ "no-cache" ], "x-ms-request-id": [ - "6dbfbd4f-f114-4b3b-9333-fe8567fe2334" + "1411e468-0f30-4e52-a395-7fa382bd1f4e" ], "x-ms-client-request-id": [ - "dcee7a5d-55f9-4fd3-a984-59d0b9e338c3" + "6f111f9a-6b30-4de2-a3b7-5a934c8aec04" ], "OData-Version": [ "4.0" @@ -2712,16 +2712,16 @@ "11975" ], "x-ms-correlation-request-id": [ - "d363d65c-d0c0-47e6-92ae-db839ee3bce2" + "9e0eb6b7-592d-4289-809b-01617bd73e6c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222533Z:d363d65c-d0c0-47e6-92ae-db839ee3bce2" + "WESTUS:20201027T022703Z:9e0eb6b7-592d-4289-809b-01617bd73e6c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:33 GMT" + "Tue, 27 Oct 2020 02:27:03 GMT" ], "Content-Length": [ "78" @@ -2737,16 +2737,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2757,10 +2757,10 @@ "no-cache" ], "x-ms-request-id": [ - "f353e6a3-9d88-4b7f-b94f-524cbcd1dfaa" + "0295d8d9-2b75-4202-a654-79811e4d157f" ], "x-ms-client-request-id": [ - "d5ebf425-dcc6-43ef-a397-132713d835ce" + "3af0e2e8-79d1-4adf-ab78-41c9b5db43cc" ], "OData-Version": [ "4.0" @@ -2781,16 +2781,16 @@ "11974" ], "x-ms-correlation-request-id": [ - "ae22a01e-3cb8-4257-957a-e97d5aa4d594" + "d35375a5-4234-4251-bd6e-f9172567489b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222544Z:ae22a01e-3cb8-4257-957a-e97d5aa4d594" + "WESTUS:20201027T022713Z:d35375a5-4234-4251-bd6e-f9172567489b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:43 GMT" + "Tue, 27 Oct 2020 02:27:13 GMT" ], "Content-Length": [ "78" @@ -2806,16 +2806,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2826,10 +2826,10 @@ "no-cache" ], "x-ms-request-id": [ - "f148bae7-4f5b-4b88-8ab2-567e51f98885" + "12002fab-d8b0-4983-b6ad-778c9dd786ea" ], "x-ms-client-request-id": [ - "c4aafa46-b84b-4e7b-a735-ca91aff0ec5d" + "ffc52460-928d-4751-bc37-0cbf0f24f6e6" ], "OData-Version": [ "4.0" @@ -2850,16 +2850,16 @@ "11973" ], "x-ms-correlation-request-id": [ - "3383e0f4-5572-42ca-bd8c-36c7e21c42f0" + "fb89e5e0-1915-4549-8cc2-c4be2335ca7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222554Z:3383e0f4-5572-42ca-bd8c-36c7e21c42f0" + "WESTUS:20201027T022724Z:fb89e5e0-1915-4549-8cc2-c4be2335ca7b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:25:53 GMT" + "Tue, 27 Oct 2020 02:27:23 GMT" ], "Content-Length": [ "78" @@ -2875,16 +2875,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2895,10 +2895,10 @@ "no-cache" ], "x-ms-request-id": [ - "5d3281e3-b0fc-4a0d-98d5-c795c8d6bfef" + "b53fbd33-79eb-4fe7-9a23-4c631e97b202" ], "x-ms-client-request-id": [ - "4ecd8ee0-0ab2-4dba-b43d-65585c1e4b3c" + "1940ae7a-773b-4734-aea0-47cd9a917722" ], "OData-Version": [ "4.0" @@ -2919,16 +2919,16 @@ "11972" ], "x-ms-correlation-request-id": [ - "2f50beb9-7f9b-42c9-937f-1e5f8cf9d4e4" + "169de73f-36fb-49ee-8863-cc188586397c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222604Z:2f50beb9-7f9b-42c9-937f-1e5f8cf9d4e4" + "WESTUS:20201027T022734Z:169de73f-36fb-49ee-8863-cc188586397c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:03 GMT" + "Tue, 27 Oct 2020 02:27:33 GMT" ], "Content-Length": [ "78" @@ -2944,16 +2944,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -2964,10 +2964,10 @@ "no-cache" ], "x-ms-request-id": [ - "3d99c6bb-f010-4147-bf06-89bdcd8e57f8" + "c159735c-c42f-495a-b7df-02bdb9cabe05" ], "x-ms-client-request-id": [ - "c6360e20-0817-4dfc-930d-de9706040286" + "fc1185dc-7243-46f7-8c7e-41501914a6aa" ], "OData-Version": [ "4.0" @@ -2988,16 +2988,16 @@ "11971" ], "x-ms-correlation-request-id": [ - "28ab2926-d5a2-4db8-9085-95792a947885" + "05bc2458-06b2-4fae-8c74-319af35bc6bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222615Z:28ab2926-d5a2-4db8-9085-95792a947885" + "WESTUS:20201027T022744Z:05bc2458-06b2-4fae-8c74-319af35bc6bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:14 GMT" + "Tue, 27 Oct 2020 02:27:44 GMT" ], "Content-Length": [ "78" @@ -3013,16 +3013,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3033,10 +3033,10 @@ "no-cache" ], "x-ms-request-id": [ - "5d318b04-fcf8-4d13-9036-ae0c27214241" + "9bda5590-2fe4-4e1b-b141-95d816200a40" ], "x-ms-client-request-id": [ - "665fc30d-acb6-4498-a31f-324356fc5514" + "ad61e569-bc37-4fd0-bf1c-4ffc836573ca" ], "OData-Version": [ "4.0" @@ -3057,16 +3057,16 @@ "11970" ], "x-ms-correlation-request-id": [ - "ac16459a-27db-490f-a6da-2b3dfeb9a700" + "641d3435-27ff-4d8d-8cb2-ab78d07299e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222625Z:ac16459a-27db-490f-a6da-2b3dfeb9a700" + "WESTUS:20201027T022755Z:641d3435-27ff-4d8d-8cb2-ab78d07299e7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:24 GMT" + "Tue, 27 Oct 2020 02:27:55 GMT" ], "Content-Length": [ "78" @@ -3082,16 +3082,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3102,10 +3102,10 @@ "no-cache" ], "x-ms-request-id": [ - "092740e8-5939-49d6-95d7-39acfa2fe9bb" + "366dfb34-878a-4e79-bd52-a547b345822a" ], "x-ms-client-request-id": [ - "08089d7d-abc6-4535-af47-60a5c11c0f61" + "76ed0775-099d-4095-bef7-a7c9e1605601" ], "OData-Version": [ "4.0" @@ -3113,9 +3113,6 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11969" - ], "Server": [ "Microsoft-IIS/10.0" ], @@ -3125,17 +3122,20 @@ "X-Powered-By": [ "ASP.NET" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11969" + ], "x-ms-correlation-request-id": [ - "b16c7b94-b0d2-48be-b165-f7b6c31581a9" + "a250dd62-a7a5-4cfc-b96f-589ca9db86cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222635Z:b16c7b94-b0d2-48be-b165-f7b6c31581a9" + "WESTUS:20201027T022805Z:a250dd62-a7a5-4cfc-b96f-589ca9db86cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:35 GMT" + "Tue, 27 Oct 2020 02:28:05 GMT" ], "Content-Length": [ "78" @@ -3151,16 +3151,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3171,10 +3171,10 @@ "no-cache" ], "x-ms-request-id": [ - "c1187250-d21f-428a-bddd-b878824cf97a" + "394ccdac-f05f-4920-b89d-bd9fff40565a" ], "x-ms-client-request-id": [ - "38e10b88-cb32-4a28-8b8c-e4362dd50785" + "bfba9e33-6f75-449a-a18d-66cabc2a952d" ], "OData-Version": [ "4.0" @@ -3195,16 +3195,16 @@ "11968" ], "x-ms-correlation-request-id": [ - "20b3b2ab-a5f2-4a64-ad76-aa1bc8b1e9a5" + "b2ed012c-b532-4073-a77d-a9d8f7cc2007" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222646Z:20b3b2ab-a5f2-4a64-ad76-aa1bc8b1e9a5" + "WESTUS:20201027T022815Z:b2ed012c-b532-4073-a77d-a9d8f7cc2007" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:46 GMT" + "Tue, 27 Oct 2020 02:28:15 GMT" ], "Content-Length": [ "78" @@ -3220,16 +3220,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3240,10 +3240,10 @@ "no-cache" ], "x-ms-request-id": [ - "719e9c16-8beb-4b27-87bf-7d30ed9adc5e" + "417ca547-c8a4-40e3-b911-e8fed27de213" ], "x-ms-client-request-id": [ - "b4fdc993-66ed-4821-82f0-dcbfce9e5bf0" + "916b94ec-713c-4c0c-9394-1debfc4a45c5" ], "OData-Version": [ "4.0" @@ -3251,6 +3251,9 @@ "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11967" + ], "Server": [ "Microsoft-IIS/10.0" ], @@ -3260,20 +3263,17 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11967" - ], "x-ms-correlation-request-id": [ - "17b19386-28d4-4c7a-bd96-31c1993d91ba" + "b7de6113-c706-41ed-855d-15bea5e897da" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222656Z:17b19386-28d4-4c7a-bd96-31c1993d91ba" + "WESTUS:20201027T022826Z:b7de6113-c706-41ed-855d-15bea5e897da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:26:56 GMT" + "Tue, 27 Oct 2020 02:28:25 GMT" ], "Content-Length": [ "78" @@ -3289,16 +3289,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3309,10 +3309,10 @@ "no-cache" ], "x-ms-request-id": [ - "58c057cd-1f2c-4dcc-ba8a-fb4b1be9b919" + "9d81b463-a211-48f3-9496-f89ebe727de3" ], "x-ms-client-request-id": [ - "f7b47f5f-6635-4eb3-bf98-a4cf5428566d" + "40808619-7a0e-46a3-9e8d-d184c446a8d3" ], "OData-Version": [ "4.0" @@ -3333,16 +3333,16 @@ "11966" ], "x-ms-correlation-request-id": [ - "efb232b5-8b38-4c06-832e-bf534b03d876" + "049031a7-bca1-4d19-a7c5-c71610ac5de8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222706Z:efb232b5-8b38-4c06-832e-bf534b03d876" + "WESTUS:20201027T022836Z:049031a7-bca1-4d19-a7c5-c71610ac5de8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:06 GMT" + "Tue, 27 Oct 2020 02:28:36 GMT" ], "Content-Length": [ "78" @@ -3358,16 +3358,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3378,10 +3378,10 @@ "no-cache" ], "x-ms-request-id": [ - "3c3b6e39-0949-4abe-98ba-a187f93dbc63" + "73838a18-e22c-4fe7-82a7-1654c83fb6a8" ], "x-ms-client-request-id": [ - "e95e2234-e7b4-4967-9ce7-95674e94049b" + "6047cb04-0cab-4572-9f73-071d6ed6aeca" ], "OData-Version": [ "4.0" @@ -3402,16 +3402,16 @@ "11965" ], "x-ms-correlation-request-id": [ - "469dbed0-fa44-423a-9062-26e12aec1e49" + "e4ef03ec-8424-45ef-8aaf-5d04d6c84b27" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222717Z:469dbed0-fa44-423a-9062-26e12aec1e49" + "WESTUS:20201027T022846Z:e4ef03ec-8424-45ef-8aaf-5d04d6c84b27" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:16 GMT" + "Tue, 27 Oct 2020 02:28:46 GMT" ], "Content-Length": [ "78" @@ -3427,16 +3427,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3447,10 +3447,10 @@ "no-cache" ], "x-ms-request-id": [ - "534b4ac5-9ece-46e5-9608-81e75b9781ab" + "83e9c6f4-9be9-4fbf-9b0d-2c86da9bc16f" ], "x-ms-client-request-id": [ - "559da337-eca3-4cb6-8bbd-8e461f50ae33" + "f7177668-3248-49ad-8a19-48fa9ddea77f" ], "OData-Version": [ "4.0" @@ -3471,16 +3471,16 @@ "11964" ], "x-ms-correlation-request-id": [ - "52a59549-39c1-4fb1-9333-fd5e2250aa1e" + "0576e969-5475-45ca-a522-8243380872e9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222727Z:52a59549-39c1-4fb1-9333-fd5e2250aa1e" + "WESTUS:20201027T022857Z:0576e969-5475-45ca-a522-8243380872e9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:27 GMT" + "Tue, 27 Oct 2020 02:28:56 GMT" ], "Content-Length": [ "78" @@ -3496,16 +3496,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3516,10 +3516,10 @@ "no-cache" ], "x-ms-request-id": [ - "6ac04112-28ae-4419-a5aa-170739a24d6d" + "30c75b3c-67a8-4336-a741-419ebc0a6434" ], "x-ms-client-request-id": [ - "114c4103-f63b-4c9f-9be4-61642582f360" + "4fc970e5-65e4-4f56-90c6-5fc4fb63fc61" ], "OData-Version": [ "4.0" @@ -3540,16 +3540,16 @@ "11963" ], "x-ms-correlation-request-id": [ - "088fafa2-408f-4f3a-93f5-6ca20b8f4f37" + "cb61602a-56ed-46d9-a4ea-d7ea2806c605" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222737Z:088fafa2-408f-4f3a-93f5-6ca20b8f4f37" + "WESTUS:20201027T022907Z:cb61602a-56ed-46d9-a4ea-d7ea2806c605" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:37 GMT" + "Tue, 27 Oct 2020 02:29:06 GMT" ], "Content-Length": [ "78" @@ -3565,16 +3565,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3585,10 +3585,10 @@ "no-cache" ], "x-ms-request-id": [ - "ea3f2569-5d47-4866-9931-3039e94897f9" + "3175f533-775e-4566-843e-edc892e76144" ], "x-ms-client-request-id": [ - "6acc9409-9e63-4b36-9418-399cf9a26db4" + "682ac9fb-0b71-4547-bd27-e88a10f82d4a" ], "OData-Version": [ "4.0" @@ -3609,19 +3609,19 @@ "11962" ], "x-ms-correlation-request-id": [ - "039a2127-62fc-452b-b344-85af0aeb3867" + "20210975-0c76-4895-9cf1-e86744503325" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222748Z:039a2127-62fc-452b-b344-85af0aeb3867" + "WESTUS:20201027T022917Z:20210975-0c76-4895-9cf1-e86744503325" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:47 GMT" + "Tue, 27 Oct 2020 02:29:16 GMT" ], "Content-Length": [ - "78" + "77" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -3630,20 +3630,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NmZiYmYtNmY0MS00YzVmLWI0NjktMGMwNWE2ZWNjOTQ0L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3654,10 +3654,10 @@ "no-cache" ], "x-ms-request-id": [ - "ce578483-6cce-4ef2-91ff-4017bab42141" + "bf726507-f1d4-45ee-9d69-f8d72373cb40" ], "x-ms-client-request-id": [ - "70818ce5-3ab4-4603-beac-5aa125918d00" + "5b8920ae-396c-4a1a-92ec-4c251ad013e3" ], "OData-Version": [ "4.0" @@ -3678,19 +3678,19 @@ "11961" ], "x-ms-correlation-request-id": [ - "409130fa-43d5-4504-b0a4-47ff662b1bb5" + "a9964d62-a536-45f3-8203-4cc8f833d887" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222758Z:409130fa-43d5-4504-b0a4-47ff662b1bb5" + "WESTUS:20201027T022918Z:a9964d62-a536-45f3-8203-4cc8f833d887" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:27:57 GMT" + "Tue, 27 Oct 2020 02:29:17 GMT" ], "Content-Length": [ - "78" + "1384" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -3699,20 +3699,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/be76fbbf-6f41-4c5f-b469-0c05a6ecc944/profileresults/profile6218/endpointresults/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/fakeEndpoint/load?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9mYWtlRW5kcG9pbnQvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/amazing.mp4\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", "RequestHeaders": { + "x-ms-client-request-id": [ + "ea367ef5-703e-427b-9aa6-293a16f207af" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "84" ] }, "ResponseHeaders": { @@ -3722,66 +3734,57 @@ "Pragma": [ "no-cache" ], + "x-ms-failure-cause": [ + "gateway" + ], "x-ms-request-id": [ - "80519ff2-0574-4ace-9c32-3aec10060992" + "be7ca73e-b021-4dcc-8ff7-f8818ebe2145" ], - "x-ms-client-request-id": [ - "e99b1cf4-d9b3-4933-916a-bc8b7adfe565" + "x-ms-correlation-request-id": [ + "be7ca73e-b021-4dcc-8ff7-f8818ebe2145" ], - "OData-Version": [ - "4.0" + "x-ms-routing-request-id": [ + "WESTUS:20201027T022918Z:be7ca73e-b021-4dcc-8ff7-f8818ebe2145" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11960" - ], - "x-ms-correlation-request-id": [ - "a23590ad-1c4c-4d37-afc2-2c56b5d5bbe9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T222808Z:a23590ad-1c4c-4d37-afc2-2c56b5d5bbe9" - ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:08 GMT" - ], - "Content-Length": [ - "78" + "Tue, 27 Oct 2020 02:29:17 GMT" ], "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "application/json; charset=utf-8" ], "Expires": [ "-1" + ], + "Content-Length": [ + "249" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cdn/profiles/profile6218/endpoints/fakeEndpoint' under resource group 'cdnResourceGroup1841' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", + "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1841/providers/Microsoft.Cdn/profiles/profile6218/endpoints/endpoint4166/stop?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cy9lbmRwb2ludDQxNjYvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "de02c3f1-034a-4875-9f21-9197d4d4ee5c" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3791,11 +3794,20 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15" + ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "4b7592c8-b269-462d-89e8-632d1fdd7899" + "b6829341-ce7c-4fc2-9371-94003214141e" ], "x-ms-client-request-id": [ - "06c71726-ef77-4967-a55f-8fff3820b84f" + "de02c3f1-034a-4875-9f21-9197d4d4ee5c" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -3812,23 +3824,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11959" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "f908e272-a99d-43d3-aaa7-324b8bee8aa3" + "e1d860aa-e865-4d5f-8f58-8a4cfc467e86" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222818Z:f908e272-a99d-43d3-aaa7-324b8bee8aa3" + "WESTUS:20201027T022921Z:e1d860aa-e865-4d5f-8f58-8a4cfc467e86" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:18 GMT" + "Tue, 27 Oct 2020 02:29:20 GMT" ], "Content-Length": [ - "78" + "951" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -3837,20 +3849,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTZmNzhkNGEtYzRhZi00MDM3LTk5YmEtNDU1MTVmZmU2N2M5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3861,10 +3873,10 @@ "no-cache" ], "x-ms-request-id": [ - "b8eb5e10-e0a3-4d1a-9ee6-11100f3a6c6c" + "d90d2bc1-4c90-4840-908d-47cdc993c41a" ], "x-ms-client-request-id": [ - "7bf68fc6-0d92-4874-924b-ef97a8f70286" + "f7ae04f5-de88-416a-9b43-e4e57c15021e" ], "OData-Version": [ "4.0" @@ -3882,19 +3894,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11958" + "11960" ], "x-ms-correlation-request-id": [ - "4eab89b6-2276-4517-9067-1347ee5886e2" + "85573382-1198-43c6-9f6d-69d9a0c655ed" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222829Z:4eab89b6-2276-4517-9067-1347ee5886e2" + "WESTUS:20201027T022931Z:85573382-1198-43c6-9f6d-69d9a0c655ed" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:28 GMT" + "Tue, 27 Oct 2020 02:29:30 GMT" ], "Content-Length": [ "78" @@ -3910,16 +3922,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTZmNzhkNGEtYzRhZi00MDM3LTk5YmEtNDU1MTVmZmU2N2M5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3930,10 +3942,10 @@ "no-cache" ], "x-ms-request-id": [ - "d77bde25-3a85-485c-b506-8d0071523308" + "85046b94-fd42-42e6-b766-14ed5aed287b" ], "x-ms-client-request-id": [ - "f30bfefb-5124-4ac3-939a-adacf904fc4a" + "56a03878-5db2-4b0e-af7b-8a36d9af81e7" ], "OData-Version": [ "4.0" @@ -3951,22 +3963,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11957" + "11959" ], "x-ms-correlation-request-id": [ - "b86ff67d-a157-42c9-9b92-b0207fc596e8" + "a3bd8349-fb93-4875-aa4f-906a569bd358" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222839Z:b86ff67d-a157-42c9-9b92-b0207fc596e8" + "WESTUS:20201027T022942Z:a3bd8349-fb93-4875-aa4f-906a569bd358" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:38 GMT" + "Tue, 27 Oct 2020 02:29:41 GMT" ], "Content-Length": [ - "78" + "77" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -3975,20 +3987,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9/profileresults/profile6218/endpointresults/endpoint4166?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTZmNzhkNGEtYzRhZi00MDM3LTk5YmEtNDU1MTVmZmU2N2M5L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MjE4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDQxNjY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -3999,10 +4011,10 @@ "no-cache" ], "x-ms-request-id": [ - "4312c8af-fa2f-4c93-b88b-38bfa289a0f2" + "59843c33-6a09-4e50-8de3-3f83ec15d640" ], "x-ms-client-request-id": [ - "64b2b74e-91d3-4879-9ad2-a2a92d5ac09b" + "885b318c-6f8f-4543-b1fc-cf816234627a" ], "OData-Version": [ "4.0" @@ -4020,22 +4032,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11956" + "11958" ], "x-ms-correlation-request-id": [ - "5e8dd504-7b73-45f4-bbae-28abf7a8f796" + "7ce2b933-4958-46ce-9592-68f104df5728" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222849Z:5e8dd504-7b73-45f4-bbae-28abf7a8f796" + "WESTUS:20201027T022943Z:7ce2b933-4958-46ce-9592-68f104df5728" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:49 GMT" + "Tue, 27 Oct 2020 02:29:42 GMT" ], "Content-Length": [ - "78" + "1384" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -4044,20 +4056,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4166\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841/providers/Microsoft.Cdn/operationresults/e6f78d4a-c4af-4037-99ba-45515ffe67c9/profileresults/profile6218/endpointresults/endpoint4166\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4166.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopped\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin3328\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1841?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODQxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "d90e1dfb-7f7b-4337-8a81-36787f5dbf1f" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -4067,66 +4085,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "3396bf4d-4b70-40ec-9bc2-45f0293d89b7" - ], - "x-ms-client-request-id": [ - "b31a37b8-5f2a-4a26-9215-43a5292a7005" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" + "Location": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], - "X-AspNet-Version": [ - "4.0.30319" + "Retry-After": [ + "15" ], - "X-Powered-By": [ - "ASP.NET" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14998" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11955" + "x-ms-request-id": [ + "e5e93a16-53ef-4e4f-b9cc-1ebd7ddf9cca" ], "x-ms-correlation-request-id": [ - "af5ccd6a-044e-4f12-a664-a9c12d6d917b" + "e5e93a16-53ef-4e4f-b9cc-1ebd7ddf9cca" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222900Z:af5ccd6a-044e-4f12-a664-a9c12d6d917b" + "WESTUS:20201027T022947Z:e5e93a16-53ef-4e4f-b9cc-1ebd7ddf9cca" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:28:59 GMT" - ], - "Content-Length": [ - "78" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "Tue, 27 Oct 2020 02:29:47 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -4136,66 +4142,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "7c0d610a-de38-44c0-8d75-7f11529f1c90" - ], - "x-ms-client-request-id": [ - "570388ae-3d4c-41a0-aa7b-60f7dfd2663a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" + "Location": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], - "X-Powered-By": [ - "ASP.NET" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11954" + "11987" + ], + "x-ms-request-id": [ + "e1576a9a-c82e-425c-8de3-55a28d44bc74" ], "x-ms-correlation-request-id": [ - "fdcc3a8a-032f-4bf1-83f7-4766c248cd81" + "e1576a9a-c82e-425c-8de3-55a28d44bc74" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222910Z:fdcc3a8a-032f-4bf1-83f7-4766c248cd81" + "WESTUS:20201027T023002Z:e1576a9a-c82e-425c-8de3-55a28d44bc74" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:29:09 GMT" - ], - "Content-Length": [ - "78" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "Tue, 27 Oct 2020 02:30:02 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -4205,66 +4199,54 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "1ddbae2c-5030-4673-bb1a-73a67e598829" - ], - "x-ms-client-request-id": [ - "dc9d9105-fdbf-41ca-b39b-255f7cc5c1d4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" + "Location": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], - "X-Powered-By": [ - "ASP.NET" + "Retry-After": [ + "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11953" + "11986" + ], + "x-ms-request-id": [ + "63cb65a9-64fb-41ff-97ff-3fcfb123c766" ], "x-ms-correlation-request-id": [ - "7b0d0f9d-8b47-4490-964b-189073b2bc75" + "63cb65a9-64fb-41ff-97ff-3fcfb123c766" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222920Z:7b0d0f9d-8b47-4490-964b-189073b2bc75" + "WESTUS:20201027T023017Z:63cb65a9-64fb-41ff-97ff-3fcfb123c766" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:29:20 GMT" - ], - "Content-Length": [ - "78" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "Tue, 27 Oct 2020 02:30:17 GMT" ], "Expires": [ "-1" + ], + "Content-Length": [ + "0" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, "ResponseHeaders": { @@ -4274,5672 +4256,32 @@ "Pragma": [ "no-cache" ], + "Location": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + ], + "Retry-After": [ + "15" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11985" + ], "x-ms-request-id": [ - "4bb8f6ac-8c9b-4058-b1f3-1d99f11c972c" + "6c75aeae-54d2-455e-8d99-15a6aa276a24" ], - "x-ms-client-request-id": [ - "c767338c-2359-408f-a705-2e042da9dc82" + "x-ms-correlation-request-id": [ + "6c75aeae-54d2-455e-8d99-15a6aa276a24" ], - "OData-Version": [ - "4.0" + "x-ms-routing-request-id": [ + "WESTUS:20201027T023032Z:6c75aeae-54d2-455e-8d99-15a6aa276a24" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" + "X-Content-Type-Options": [ + "nosniff" ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11952" - ], - "x-ms-correlation-request-id": [ - "0170da50-e1f0-4ed3-af96-73c9ced5a2bd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T222931Z:0170da50-e1f0-4ed3-af96-73c9ced5a2bd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:29:30 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "97d0b7a6-2cc3-4ee7-b76a-8418cc8a71d1" - ], - "x-ms-client-request-id": [ - "f0e1b9e7-f026-4c86-ac67-d23c660c3fd8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11951" - ], - "x-ms-correlation-request-id": [ - "6b71ce3e-a21b-4945-9e9b-555b266fa88e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T222941Z:6b71ce3e-a21b-4945-9e9b-555b266fa88e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:29:41 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dfe64aee-53dd-4e18-a0fc-e6b0a4e5936b" - ], - "x-ms-client-request-id": [ - "44063c49-0006-4dd4-b1c9-1b900544ac65" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11950" - ], - "x-ms-correlation-request-id": [ - "1e3617df-384f-4757-9b4f-52fb9ef5c5c7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T222951Z:1e3617df-384f-4757-9b4f-52fb9ef5c5c7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:29:51 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "996b4c94-0e4a-4830-b389-3198debeedac" - ], - "x-ms-client-request-id": [ - "8564db29-a896-4f7e-96fe-728fb6d55dc8" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11949" - ], - "x-ms-correlation-request-id": [ - "3a53688a-09ff-4900-a449-c8375cd7861b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223002Z:3a53688a-09ff-4900-a449-c8375cd7861b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:01 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "15270e34-71d8-4110-a111-a723ec594b5a" - ], - "x-ms-client-request-id": [ - "4410a4c5-6f6a-4b9a-a1fc-3c4a33c0494a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11948" - ], - "x-ms-correlation-request-id": [ - "2490474a-cb00-4c23-9d09-589668b82242" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223012Z:2490474a-cb00-4c23-9d09-589668b82242" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:12 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "451c7af4-685f-46e2-8a43-5eb24e38822a" - ], - "x-ms-client-request-id": [ - "0bda9984-84b8-45e6-aaf1-25010367e66f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11947" - ], - "x-ms-correlation-request-id": [ - "de4f8ff7-457f-4d5c-a8af-5e31953782da" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223022Z:de4f8ff7-457f-4d5c-a8af-5e31953782da" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:22 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cf10cb3a-5627-4fe8-a0b1-0626d04a984d" - ], - "x-ms-client-request-id": [ - "bbe950ad-67a7-4380-ae9c-3f18ec707471" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11946" - ], - "x-ms-correlation-request-id": [ - "38f78fc1-e89a-4913-a1f4-c9abe2176811" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223033Z:38f78fc1-e89a-4913-a1f4-c9abe2176811" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:32 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f92b50f4-c92d-429d-9c33-74172aa786d9" - ], - "x-ms-client-request-id": [ - "975d023e-c181-4f8e-b639-2445fdecaf01" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11945" - ], - "x-ms-correlation-request-id": [ - "4d59f742-5b24-496e-806f-5068650a27b8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223043Z:4d59f742-5b24-496e-806f-5068650a27b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:42 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5bdb7107-bec1-4519-a279-c42e8558dfff" - ], - "x-ms-client-request-id": [ - "b55a60bc-41eb-4ffb-87eb-2be04992c3b3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11944" - ], - "x-ms-correlation-request-id": [ - "868c9aaa-9a03-445f-9ecb-9e81862d2db8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223053Z:868c9aaa-9a03-445f-9ecb-9e81862d2db8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:30:53 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3b11bad5-4324-4251-a952-3d8acfc7bed9" - ], - "x-ms-client-request-id": [ - "52dadd19-4d19-4cab-9a77-71b5cabe2f37" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11943" - ], - "x-ms-correlation-request-id": [ - "a24a041a-dbe1-4259-8ff5-47c8a1643b0d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223104Z:a24a041a-dbe1-4259-8ff5-47c8a1643b0d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:03 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3b035a52-95f0-4fa3-ada3-3f22312b734b" - ], - "x-ms-client-request-id": [ - "76bc0ea3-e437-421c-bf4d-da4d5a9fa7e1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11942" - ], - "x-ms-correlation-request-id": [ - "daa9c013-a60b-4e0f-9316-a3c1630354f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223114Z:daa9c013-a60b-4e0f-9316-a3c1630354f8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:13 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ef2a394c-6285-4fd7-84ee-7dec8cf174e5" - ], - "x-ms-client-request-id": [ - "1878c676-7657-4cf3-b6d4-bb2f117c9a3a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11941" - ], - "x-ms-correlation-request-id": [ - "cbde9771-73c3-4fb2-9896-4d52b8354dfc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223124Z:cbde9771-73c3-4fb2-9896-4d52b8354dfc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:23 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "ed8a1c35-d69d-447c-b52b-fc27d4101d3e" - ], - "x-ms-client-request-id": [ - "50d49f56-06a8-4b19-b0da-a0820472311d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11940" - ], - "x-ms-correlation-request-id": [ - "4f76d124-d1dd-4510-b180-1b6ce26cef12" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223135Z:4f76d124-d1dd-4510-b180-1b6ce26cef12" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:34 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "3635e092-72ff-482c-8b13-5241400a897b" - ], - "x-ms-client-request-id": [ - "3a01db17-7917-4337-b99b-c62140dc5370" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11939" - ], - "x-ms-correlation-request-id": [ - "3bde75ba-d7f8-422c-8dd6-937dce04b3b8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223145Z:3bde75ba-d7f8-422c-8dd6-937dce04b3b8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:44 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7a42bc95-b81b-477f-93e6-7097cb9e4a01" - ], - "x-ms-client-request-id": [ - "b1abe7c7-c6f5-4224-b9cb-b134a0f0003d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11938" - ], - "x-ms-correlation-request-id": [ - "97ac629f-41a2-4afc-bb0e-b93adc0a3ae1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223155Z:97ac629f-41a2-4afc-bb0e-b93adc0a3ae1" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:31:54 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4d78e32c-343d-4ab1-85e4-80a711c837e0" - ], - "x-ms-client-request-id": [ - "6b2f941d-61ec-432c-857d-e1dbd3c02d84" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11937" - ], - "x-ms-correlation-request-id": [ - "72c567a0-e2d0-4bef-88c5-d6cb7f2597fa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223205Z:72c567a0-e2d0-4bef-88c5-d6cb7f2597fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:05 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a5cc0a48-48ac-4803-b1a0-5f0f6e86a8cb" - ], - "x-ms-client-request-id": [ - "5a302dd6-84ab-4c34-b44e-522bba31341f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11936" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "a80d20b8-b124-4fc4-a853-aad18df05972" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223216Z:a80d20b8-b124-4fc4-a853-aad18df05972" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:16 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1589fced-5e28-4f63-b898-0b66f6c43385" - ], - "x-ms-client-request-id": [ - "fb33af12-1475-4e29-917e-51dd13dd22c7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11935" - ], - "x-ms-correlation-request-id": [ - "6ee2ab0a-96c4-4bbf-9af7-3dfffdccd954" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223226Z:6ee2ab0a-96c4-4bbf-9af7-3dfffdccd954" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:26 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "959575e2-e995-4c7f-9562-90303e99e094" - ], - "x-ms-client-request-id": [ - "a0c75ddc-b88d-4433-aa2e-f006b281d359" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11934" - ], - "x-ms-correlation-request-id": [ - "9cdb7ad9-5116-4e0f-bed2-2ff9e8afcd0e" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223236Z:9cdb7ad9-5116-4e0f-bed2-2ff9e8afcd0e" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:36 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "18bf3e1d-b642-4916-a85d-a7b69c2179ee" - ], - "x-ms-client-request-id": [ - "b0af54f8-7193-435f-9770-a2c195cf74d4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11933" - ], - "x-ms-correlation-request-id": [ - "6438c62d-1a19-48e7-8889-3039106c76e3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223247Z:6438c62d-1a19-48e7-8889-3039106c76e3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:47 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "43d33bec-c275-43f7-861d-362b8ee41fc5" - ], - "x-ms-client-request-id": [ - "187455de-aba0-4f54-a74a-ea870cc25abd" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11932" - ], - "x-ms-correlation-request-id": [ - "035d3432-a63a-48c8-bcaf-097b8003cc4a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223257Z:035d3432-a63a-48c8-bcaf-097b8003cc4a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:32:57 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "dbaa3fb1-2648-4325-ac39-3f38e47baa54" - ], - "x-ms-client-request-id": [ - "00f4a7e6-321e-4300-b9bc-20052e2f76ae" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11931" - ], - "x-ms-correlation-request-id": [ - "2afa51d3-c405-46ff-acd8-aff8b27d2dab" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223307Z:2afa51d3-c405-46ff-acd8-aff8b27d2dab" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:07 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a4dc5f1d-b586-4002-9278-5c26ef58dc98" - ], - "x-ms-client-request-id": [ - "9602d724-f825-42b3-9114-fc6b0bde15e1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11930" - ], - "x-ms-correlation-request-id": [ - "38b0ef07-2429-4981-8b71-a669d02e6db7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223318Z:38b0ef07-2429-4981-8b71-a669d02e6db7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:17 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9e52168f-48d8-42e7-88d0-f93f4d9472e8" - ], - "x-ms-client-request-id": [ - "346046f3-fc48-484a-aa2d-3aec4c5b0008" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11929" - ], - "x-ms-correlation-request-id": [ - "7d400f99-8aeb-42ea-bab6-13362efbb88d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223328Z:7d400f99-8aeb-42ea-bab6-13362efbb88d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:28 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7ea21b3c-7a59-4552-9ebd-e383091d4b27" - ], - "x-ms-client-request-id": [ - "f033e2af-4639-48f9-aeb7-882f09791a7b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11928" - ], - "x-ms-correlation-request-id": [ - "234bbf15-d9fe-436d-930a-0d10c3c48b74" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223338Z:234bbf15-d9fe-436d-930a-0d10c3c48b74" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:38 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e104afb7-b697-44dd-af61-25985d495878" - ], - "x-ms-client-request-id": [ - "2090e35a-314b-4a0c-bb6a-1d6f275c927b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11927" - ], - "x-ms-correlation-request-id": [ - "80f3741c-f9f6-4335-9e36-662f9b5fde70" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223349Z:80f3741c-f9f6-4335-9e36-662f9b5fde70" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:48 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "74b7137a-6655-47bf-b528-6cf4f379b076" - ], - "x-ms-client-request-id": [ - "12614b2f-9d6e-4317-9183-7e6ff44628b0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11926" - ], - "x-ms-correlation-request-id": [ - "ce48b73e-dc86-4c9f-8548-1d3ac1d2f298" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223359Z:ce48b73e-dc86-4c9f-8548-1d3ac1d2f298" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:33:58 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c5dd0e46-b906-4907-a811-e67958829e3a" - ], - "x-ms-client-request-id": [ - "bc48948f-fea8-4d7b-8207-e1a9d4243f86" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11925" - ], - "x-ms-correlation-request-id": [ - "40cd1914-95c8-4202-9fa2-f1c16d3dc71b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223409Z:40cd1914-95c8-4202-9fa2-f1c16d3dc71b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:34:09 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc195d60-c648-4e39-81e9-7d2aecc19037" - ], - "x-ms-client-request-id": [ - "0922baba-f823-48d0-87cf-b5dc14995879" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11924" - ], - "x-ms-correlation-request-id": [ - "e57ab808-a805-4d5f-8aa6-64b0e16d9a91" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223420Z:e57ab808-a805-4d5f-8aa6-64b0e16d9a91" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:34:19 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "bad61a10-d433-4874-8042-203729580916" - ], - "x-ms-client-request-id": [ - "e9484f21-286a-4294-bfaf-b1fe56425634" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11923" - ], - "x-ms-correlation-request-id": [ - "4342635c-fe01-4914-9897-41b133e2048d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223430Z:4342635c-fe01-4914-9897-41b133e2048d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:34:29 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b22e40dc-603d-4f65-ac50-4e7c69994ea1" - ], - "x-ms-client-request-id": [ - "8dc445e8-258b-444e-bd5c-9361eeadcb5b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11922" - ], - "x-ms-correlation-request-id": [ - "6d13e9c4-7083-442f-9f03-4791e61cb422" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223440Z:6d13e9c4-7083-442f-9f03-4791e61cb422" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:34:40 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "69f8a27d-e0e0-4449-bfcc-d741e66ac2b5" - ], - "x-ms-client-request-id": [ - "7689ec90-218e-430f-a78f-9fdb79d7a77d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11921" - ], - "x-ms-correlation-request-id": [ - "79b05931-14f0-4ec4-bfc7-ae13fba3ff72" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223451Z:79b05931-14f0-4ec4-bfc7-ae13fba3ff72" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:34:50 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "48a63adf-0413-4b13-9f65-f4b8627358b1" - ], - "x-ms-client-request-id": [ - "1d960e1f-7c84-4875-9144-6d2e1dc30d34" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11920" - ], - "x-ms-correlation-request-id": [ - "4f360c38-7a2b-459e-9605-9bb04f4a4f7c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223501Z:4f360c38-7a2b-459e-9605-9bb04f4a4f7c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:00 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e910886b-50db-489b-b23a-e953577f62c3" - ], - "x-ms-client-request-id": [ - "0b2c306f-5132-4fdf-a5f8-95c1945e0bf5" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11919" - ], - "x-ms-correlation-request-id": [ - "b535083d-233a-4190-87ee-88911d905ee9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223511Z:b535083d-233a-4190-87ee-88911d905ee9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:10 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7334a05b-eaf2-4f63-b7e8-1af8b9d0e292" - ], - "x-ms-client-request-id": [ - "ad19c18b-0baa-4ce1-be4e-d67e0edca42e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11918" - ], - "x-ms-correlation-request-id": [ - "a370826e-349e-4bb0-8d00-644115de1656" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223522Z:a370826e-349e-4bb0-8d00-644115de1656" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:22 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "26bc61f6-b4bc-49bf-842f-ad24326b622d" - ], - "x-ms-client-request-id": [ - "83d84fc2-aab8-409b-aa14-f0e738550af3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11917" - ], - "x-ms-correlation-request-id": [ - "c441a4ee-96a5-461c-b498-eaf83bbbb16c" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223532Z:c441a4ee-96a5-461c-b498-eaf83bbbb16c" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:32 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7f4b3e98-a9b0-454d-a26f-cb0807ff84bd" - ], - "x-ms-client-request-id": [ - "dd1c350e-91e3-4e64-bcda-ae1b8954bce0" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11916" - ], - "x-ms-correlation-request-id": [ - "2b1ec5c5-158b-4672-a8a9-e01df612b67b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223542Z:2b1ec5c5-158b-4672-a8a9-e01df612b67b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:42 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d8213443-9932-461b-9473-371a3fb4b490" - ], - "x-ms-client-request-id": [ - "69d706b0-ff21-4f6f-adb1-e85c5b7d131f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11915" - ], - "x-ms-correlation-request-id": [ - "34fcc729-1b5d-4793-a272-190cd565131a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223553Z:34fcc729-1b5d-4793-a272-190cd565131a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:35:52 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fb827944-7ac3-4cd0-8310-4f1c4f2faf7a" - ], - "x-ms-client-request-id": [ - "59dfbdba-279e-470c-9963-17e98de8cb51" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11914" - ], - "x-ms-correlation-request-id": [ - "c8a27e34-4976-4c52-a174-3470e0f01de4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223603Z:c8a27e34-4976-4c52-a174-3470e0f01de4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:02 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c9699698-9ba0-4626-8785-48c592599b2c" - ], - "x-ms-client-request-id": [ - "dc112594-f33d-4a6c-9341-1b7529927293" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11913" - ], - "x-ms-correlation-request-id": [ - "ea3c23d6-932b-48c4-aba9-ad4e66e58353" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223613Z:ea3c23d6-932b-48c4-aba9-ad4e66e58353" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:13 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "86d0c4a5-c9f4-4951-bcd2-0b480a77e261" - ], - "x-ms-client-request-id": [ - "6ad61809-276b-4ddb-bf48-0a291bc55f65" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11912" - ], - "x-ms-correlation-request-id": [ - "47c5f857-84e7-4993-938c-bf535bb6b2cd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223623Z:47c5f857-84e7-4993-938c-bf535bb6b2cd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:23 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d3ac7c5c-d193-4df2-b24f-bce85fd3d512" - ], - "x-ms-client-request-id": [ - "6cdaab95-9554-4af3-88e8-c0ab0ec72a6f" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11911" - ], - "x-ms-correlation-request-id": [ - "c72ca04b-ffaf-4f32-9436-01c004c2e730" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223634Z:c72ca04b-ffaf-4f32-9436-01c004c2e730" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:33 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "194ef2c5-b31a-402c-94fa-bdfa47990bda" - ], - "x-ms-client-request-id": [ - "d937d256-ecb8-445a-976c-069d90e675c1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11910" - ], - "x-ms-correlation-request-id": [ - "107e868c-9090-43f9-9983-45a79e74f755" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223644Z:107e868c-9090-43f9-9983-45a79e74f755" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:43 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e8c20c9a-4186-4707-9bfb-1f050dd000ed" - ], - "x-ms-client-request-id": [ - "bf0708d4-7cec-4cfb-a953-310fdbf758bd" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11909" - ], - "x-ms-correlation-request-id": [ - "72ba6fa1-9bc3-467f-b651-9575fea37c1f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223654Z:72ba6fa1-9bc3-467f-b651-9575fea37c1f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:36:54 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4be751a6-08ec-4cc8-9803-a42e126a8bb2" - ], - "x-ms-client-request-id": [ - "c04eb662-2000-416e-86f5-1d1dd0575630" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11908" - ], - "x-ms-correlation-request-id": [ - "85560b8b-7d18-4b87-8458-d60c50d0b661" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223705Z:85560b8b-7d18-4b87-8458-d60c50d0b661" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:04 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "17b123f4-92c7-46c8-b0bb-ba18e56b3fe3" - ], - "x-ms-client-request-id": [ - "2d59d174-4d78-43b3-af57-4c5dfd1bfd64" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11907" - ], - "x-ms-correlation-request-id": [ - "e73e82dd-b627-4da8-adc7-cbacd6ebd430" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223715Z:e73e82dd-b627-4da8-adc7-cbacd6ebd430" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:14 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d0eb2a47-e88e-403c-bae1-312e8ec69ef4" - ], - "x-ms-client-request-id": [ - "bdfa9c3d-aa50-406c-a095-008fabe4847d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11906" - ], - "x-ms-correlation-request-id": [ - "ee55a8e1-9dc5-4866-ba0a-eea3a3f864c3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223725Z:ee55a8e1-9dc5-4866-ba0a-eea3a3f864c3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:24 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "d3c3f65d-2f9e-4884-b615-4e817e9c8a19" - ], - "x-ms-client-request-id": [ - "2a59c1cc-1844-429c-99b0-f0525873167e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11905" - ], - "x-ms-correlation-request-id": [ - "22cba3c4-0101-476a-8360-cf97094099cc" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223736Z:22cba3c4-0101-476a-8360-cf97094099cc" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:35 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7ccab318-806c-4aa2-b749-0b8f338c492e" - ], - "x-ms-client-request-id": [ - "a771a045-8fa7-4186-b5b1-f90bcf1c4d20" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11904" - ], - "x-ms-correlation-request-id": [ - "c481ebfd-f49e-450b-907c-0670af6b2231" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223746Z:c481ebfd-f49e-450b-907c-0670af6b2231" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:46 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "485b0bc0-3756-4049-8bf5-087cf3967c55" - ], - "x-ms-client-request-id": [ - "bd5a96ca-d883-480b-a7d4-d8e5a1972a44" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11903" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-correlation-request-id": [ - "f6905795-723a-4c4d-85cd-77db625d22d6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223756Z:f6905795-723a-4c4d-85cd-77db625d22d6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:37:56 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4161de10-68b6-405a-b0bf-bf45cc648541" - ], - "x-ms-client-request-id": [ - "8edac0e9-f1af-46b9-83f8-154f9b8546dd" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11902" - ], - "x-ms-correlation-request-id": [ - "205b7e36-8a9c-4a8c-8209-3c157c413704" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223807Z:205b7e36-8a9c-4a8c-8209-3c157c413704" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:07 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "150eefa1-4254-4dce-861c-1285f8d59d89" - ], - "x-ms-client-request-id": [ - "b3c94d18-d624-4979-9932-91e0e03757ad" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11901" - ], - "x-ms-correlation-request-id": [ - "7089efec-9675-463d-a19f-5d146ab69f8b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223817Z:7089efec-9675-463d-a19f-5d146ab69f8b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:17 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4a3820b4-23e6-494d-a6d4-0a938f19bd73" - ], - "x-ms-client-request-id": [ - "14372718-2196-41e4-9f31-f5a5ec44c638" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11900" - ], - "x-ms-correlation-request-id": [ - "2e592139-1fd9-46a1-b1c2-87e485929ac0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223827Z:2e592139-1fd9-46a1-b1c2-87e485929ac0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:27 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a1ae2d98-00f3-47e4-aacd-ae0b726f8fb2" - ], - "x-ms-client-request-id": [ - "16a9daf1-1cf7-4af0-b5c4-25f304fac77c" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11899" - ], - "x-ms-correlation-request-id": [ - "4eb7829d-ff66-481c-b5c5-63bd6a8012a3" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223838Z:4eb7829d-ff66-481c-b5c5-63bd6a8012a3" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:37 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "0f8874bd-22f0-44b9-80fe-dc379a380a33" - ], - "x-ms-client-request-id": [ - "0e7804a5-aef2-4317-aa8f-8c37ae35c788" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11898" - ], - "x-ms-correlation-request-id": [ - "1f42efe6-f421-4baa-b76f-4f2d61e2e0f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223848Z:1f42efe6-f421-4baa-b76f-4f2d61e2e0f8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:48 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e8b663c3-d5ce-4ce3-b284-22a1ae43fa16" - ], - "x-ms-client-request-id": [ - "56b37032-e211-47be-a25f-41c79c8e35fd" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11897" - ], - "x-ms-correlation-request-id": [ - "8a75464d-31e2-4934-b0ec-3d55e915496b" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223858Z:8a75464d-31e2-4934-b0ec-3d55e915496b" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:38:58 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b1cb43eb-dd57-40bf-98af-cf691350f9fc" - ], - "x-ms-client-request-id": [ - "538527d3-5538-4a5b-96f7-8e505fbf2dba" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11896" - ], - "x-ms-correlation-request-id": [ - "933aa3c1-5ccd-46fa-92e6-e722e7636d8d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223909Z:933aa3c1-5ccd-46fa-92e6-e722e7636d8d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:08 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "b9c3c229-6180-4dc5-b3cc-0cd4828d1d92" - ], - "x-ms-client-request-id": [ - "0feb80f7-be2d-4e1f-a865-8445b01c4ed7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11895" - ], - "x-ms-correlation-request-id": [ - "9761301f-bbc4-4dd0-ba0d-dceca1d7eaa6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223919Z:9761301f-bbc4-4dd0-ba0d-dceca1d7eaa6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:18 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "cc913008-3015-4369-add9-5117a03f9864" - ], - "x-ms-client-request-id": [ - "573c72ae-9e95-46c6-af4f-fd48795a76cf" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11894" - ], - "x-ms-correlation-request-id": [ - "7aec6aa8-291a-4d3c-92e1-f57573320b6d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223929Z:7aec6aa8-291a-4d3c-92e1-f57573320b6d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:29 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "e696b694-8521-45c0-b545-603f0d4ffbfd" - ], - "x-ms-client-request-id": [ - "b9109756-a19c-478b-b43d-0864eb815298" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11893" - ], - "x-ms-correlation-request-id": [ - "9814ccc0-e59a-4da1-bb88-f80584926bce" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223939Z:9814ccc0-e59a-4da1-bb88-f80584926bce" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:39 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "61f63ecb-19f0-4f4f-b924-93ba27d2df0c" - ], - "x-ms-client-request-id": [ - "b83b4c5a-a69a-4aa1-a9f2-ab37c37ce564" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11892" - ], - "x-ms-correlation-request-id": [ - "1d4d2da3-5b40-4780-acc4-b62ad5d48283" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T223950Z:1d4d2da3-5b40-4780-acc4-b62ad5d48283" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:49 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "fc7fe622-ef12-4edf-b3c4-60082b4c7abf" - ], - "x-ms-client-request-id": [ - "e19038b8-edf1-459c-a196-12cd8f2835f7" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11891" - ], - "x-ms-correlation-request-id": [ - "1173e308-3706-4e0a-abdb-797e5f333566" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224000Z:1173e308-3706-4e0a-abdb-797e5f333566" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:39:59 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "78228c32-7b24-436c-9c1b-54161759a4a3" - ], - "x-ms-client-request-id": [ - "f24ee17a-60e5-4717-9f52-0acbaecd6722" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11890" - ], - "x-ms-correlation-request-id": [ - "9ab35de3-7f4d-45be-9e9c-22ac7a98ba78" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224010Z:9ab35de3-7f4d-45be-9e9c-22ac7a98ba78" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:40:10 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "846af89e-7619-4ad9-81dd-0a14ffe6625b" - ], - "x-ms-client-request-id": [ - "bcc6b5cd-2d7b-4aed-ba29-af341ef56ca3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11889" - ], - "x-ms-correlation-request-id": [ - "9253c7a5-495c-4ee9-9290-88f3b3502852" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224021Z:9253c7a5-495c-4ee9-9290-88f3b3502852" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:40:20 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "607ce518-ec76-4748-88ab-edafa9088745" - ], - "x-ms-client-request-id": [ - "94309b20-9faa-45e5-a0f0-a48467c3e16e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11888" - ], - "x-ms-correlation-request-id": [ - "f09789e1-ad99-4550-91ec-d6d8a0bfa576" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224031Z:f09789e1-ad99-4550-91ec-d6d8a0bfa576" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:40:30 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1fc53f73-269e-49e1-9e7a-b7a3a83c7d2c" - ], - "x-ms-client-request-id": [ - "ccd7c511-331f-4ef0-964c-d639808dbf0a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11887" - ], - "x-ms-correlation-request-id": [ - "3d8b0739-a608-484d-b9eb-c2e644f68ea5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224041Z:3d8b0739-a608-484d-b9eb-c2e644f68ea5" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:40:41 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "9f193705-a253-4f22-9d30-6c7d4e0d0c5a" - ], - "x-ms-client-request-id": [ - "34acf642-e6b6-4342-a598-51b769d4ec0d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11886" - ], - "x-ms-correlation-request-id": [ - "18890dd9-c463-4a57-99fc-29ed4ed337e8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224052Z:18890dd9-c463-4a57-99fc-29ed4ed337e8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:40:52 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c228779d-1396-40d2-bfcf-a0c946f1ed2e" - ], - "x-ms-client-request-id": [ - "ef9686a3-dbee-484a-ab9b-c0459e727eb4" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11885" - ], - "x-ms-correlation-request-id": [ - "ee820f3d-051f-4850-9cdc-e0b588324ea4" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224102Z:ee820f3d-051f-4850-9cdc-e0b588324ea4" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:02 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "8a48e9f5-6025-4e6b-9dd3-d2de23eb780a" - ], - "x-ms-client-request-id": [ - "a0f6ca6c-1907-4268-936d-31fb2fc3922a" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11884" - ], - "x-ms-correlation-request-id": [ - "4b2c6b1b-14f1-4f01-ae86-4d94607a7c1a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224112Z:4b2c6b1b-14f1-4f01-ae86-4d94607a7c1a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:12 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "654cff8d-3272-42fb-a287-73c816ad6020" - ], - "x-ms-client-request-id": [ - "ec1cb5c3-16ed-4245-a586-4e91685d46c9" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11883" - ], - "x-ms-correlation-request-id": [ - "f78a224b-6686-4fc0-84cf-ced97bd60abd" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224123Z:f78a224b-6686-4fc0-84cf-ced97bd60abd" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:22 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "688eeae0-7940-4395-b78d-ead17fe1601b" - ], - "x-ms-client-request-id": [ - "cd0fbae5-8cf0-41ce-82f1-391b67b2ac35" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11882" - ], - "x-ms-correlation-request-id": [ - "5967bfb0-1636-429c-b19b-99a69b7bc4e6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224133Z:5967bfb0-1636-429c-b19b-99a69b7bc4e6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:33 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "a72689bb-779e-4321-8928-7f4a80f3b755" - ], - "x-ms-client-request-id": [ - "8da1eb1a-dd61-49b0-91c2-b5dd8c9ce26b" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11881" - ], - "x-ms-correlation-request-id": [ - "6c4e41ea-9126-450d-9550-a8aee93b7456" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224143Z:6c4e41ea-9126-450d-9550-a8aee93b7456" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:43 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "16dafd00-03f3-47ec-83d9-9fd4887231ff" - ], - "x-ms-client-request-id": [ - "70e2e57a-4951-48ed-8ec6-2345291f2382" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11880" - ], - "x-ms-correlation-request-id": [ - "7b1b94dd-9dd4-41fb-8e5b-531b14e53bb7" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224154Z:7b1b94dd-9dd4-41fb-8e5b-531b14e53bb7" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:53 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGU3ZWU2NWItY2EzOC00MGMwLTkyN2YtNjIxOTk0MjA3YTc1L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eda6aecd-ab0b-488e-bb53-a749b5b7183f" - ], - "x-ms-client-request-id": [ - "acb39191-3186-40ac-b772-e24012b3ea49" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11879" - ], - "x-ms-correlation-request-id": [ - "b0bbe82d-5ab2-40b1-8c6c-2cb0de966246" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224155Z:b0bbe82d-5ab2-40b1-8c6c-2cb0de966246" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:54 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/8e7ee65b-ca38-40c0-927f-621994207a75/profileresults/profile6302/endpointresults/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/fakeEndpoint/load?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9mYWtlRW5kcG9pbnQvbG9hZD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", - "RequestMethod": "POST", - "RequestBody": "{\r\n \"contentPaths\": [\r\n \"/movies/amazing.mp4\",\r\n \"/pictures/pic1.jpg\"\r\n ]\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "7a7e6a6c-1f61-4168-a65d-fb4561a8d96a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "84" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-failure-cause": [ - "gateway" - ], - "x-ms-request-id": [ - "4c9dfae7-06f4-42c5-a04e-4bca6853df40" - ], - "x-ms-correlation-request-id": [ - "4c9dfae7-06f4-42c5-a04e-4bca6853df40" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224155Z:4c9dfae7-06f4-42c5-a04e-4bca6853df40" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:54 GMT" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "249" - ] - }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Cdn/profiles/profile6302/endpoints/fakeEndpoint' under resource group 'cdnResourceGroup9947' was not found. For more details please go to https://aka.ms/ARMResourceNotFoundFix\"\r\n }\r\n}", - "StatusCode": 404 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9947/providers/Microsoft.Cdn/profiles/profile6302/endpoints/endpoint8159/stop?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cy9lbmRwb2ludDgxNTkvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", - "RequestMethod": "POST", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3b1594e5-0d85-4a9a-a5ba-0157f357109a" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "8eb00fe2-462e-4caa-88d9-36de720594c1" - ], - "x-ms-client-request-id": [ - "3b1594e5-0d85-4a9a-a5ba-0157f357109a" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf?api-version=2020-04-15" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" - ], - "x-ms-correlation-request-id": [ - "cde5ff2c-8946-4895-bfb8-0418a1e2a5fe" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224200Z:cde5ff2c-8946-4895-bfb8-0418a1e2a5fe" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:41:59 GMT" - ], - "Content-Length": [ - "951" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopping\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzVlYzA5ZTItNWVmYS00YmZhLWEzZDMtODhhYzZmNDkxYWFmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "eae02c0d-dfba-4c7b-a296-9ad283fa7845" - ], - "x-ms-client-request-id": [ - "3ce34b85-9b53-4b5a-aa7f-d2e68c6a959e" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11878" - ], - "x-ms-correlation-request-id": [ - "2c33286f-4b51-4df9-ada4-c79967205059" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224210Z:2c33286f-4b51-4df9-ada4-c79967205059" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:09 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzVlYzA5ZTItNWVmYS00YmZhLWEzZDMtODhhYzZmNDkxYWFmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "4de49ee6-f54a-45ac-9689-a21ab2195a89" - ], - "x-ms-client-request-id": [ - "d06dbc73-ae9d-4b51-af0f-e83aa306c025" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11877" - ], - "x-ms-correlation-request-id": [ - "fd9a0cc3-13e3-4ec5-9889-7fb2078e4692" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224220Z:fd9a0cc3-13e3-4ec5-9889-7fb2078e4692" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:20 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf/profileresults/profile6302/endpointresults/endpoint8159?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzVlYzA5ZTItNWVmYS00YmZhLWEzZDMtODhhYzZmNDkxYWFmL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MzAyL2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDgxNTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "55fd26a4-d6a6-4db9-b515-e31c211444d3" - ], - "x-ms-client-request-id": [ - "a651e8ce-3cd4-4e57-a883-28faebecfbc3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11876" - ], - "x-ms-correlation-request-id": [ - "06f5120e-8bdc-4a1e-8051-b0e1a542608f" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224221Z:06f5120e-8bdc-4a1e-8051-b0e1a542608f" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:20 GMT" - ], - "Content-Length": [ - "1384" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"endpoint8159\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947/providers/Microsoft.Cdn/operationresults/75ec09e2-5efa-4bfa-a3d3-88ac6f491aaf/profileresults/profile6302/endpointresults/endpoint8159\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {\r\n \"kay1\": \"value1\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8159.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Stopped\",\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/photos\",\r\n \"origins\": [\r\n {\r\n \"name\": \"origin9879\",\r\n \"properties\": {\r\n \"hostName\": \"custom.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"text/css\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9947?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5OTQ3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "055861a3-e288-40ac-b221-5edf8970d5bb" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "bdf10c19-6fa7-48cf-b405-86871f9dc951" - ], - "x-ms-correlation-request-id": [ - "bdf10c19-6fa7-48cf-b405-86871f9dc951" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224225Z:bdf10c19-6fa7-48cf-b405-86871f9dc951" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:25 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "dfa101b0-ca2b-4134-8aaa-7cba9c5f5e81" - ], - "x-ms-correlation-request-id": [ - "dfa101b0-ca2b-4134-8aaa-7cba9c5f5e81" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224240Z:dfa101b0-ca2b-4134-8aaa-7cba9c5f5e81" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:40 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "6cb91786-8915-448b-9668-ee4f369d4647" - ], - "x-ms-correlation-request-id": [ - "6cb91786-8915-448b-9668-ee4f369d4647" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224255Z:6cb91786-8915-448b-9668-ee4f369d4647" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:42:55 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "aa9ae4eb-5fef-4d9c-8bee-027378c8bb4a" - ], - "x-ms-correlation-request-id": [ - "aa9ae4eb-5fef-4d9c-8bee-027378c8bb4a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224310Z:aa9ae4eb-5fef-4d9c-8bee-027378c8bb4a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:43:10 GMT" + "Date": [ + "Tue, 27 Oct 2020 02:30:31 GMT" ], "Expires": [ "-1" @@ -9952,15 +4294,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -9972,79 +4314,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "e1a64ab2-eac9-4884-b7e8-668214fff153" - ], - "x-ms-correlation-request-id": [ - "e1a64ab2-eac9-4884-b7e8-668214fff153" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T224325Z:e1a64ab2-eac9-4884-b7e8-668214fff153" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:43:25 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11984" ], "x-ms-request-id": [ - "6559d09a-b618-4832-b31a-84de657034dc" + "b8dc8507-cef7-47cd-add6-255858eba18b" ], "x-ms-correlation-request-id": [ - "6559d09a-b618-4832-b31a-84de657034dc" + "b8dc8507-cef7-47cd-add6-255858eba18b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224340Z:6559d09a-b618-4832-b31a-84de657034dc" + "WESTUS:20201027T023047Z:b8dc8507-cef7-47cd-add6-255858eba18b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10053,7 +4338,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:43:40 GMT" + "Tue, 27 Oct 2020 02:30:46 GMT" ], "Expires": [ "-1" @@ -10066,15 +4351,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10086,22 +4371,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11983" ], "x-ms-request-id": [ - "25417ff4-d48d-4143-8d43-dc04b006ea1e" + "afaf3350-255e-4f2b-96e7-6ad7d1a51aac" ], "x-ms-correlation-request-id": [ - "25417ff4-d48d-4143-8d43-dc04b006ea1e" + "afaf3350-255e-4f2b-96e7-6ad7d1a51aac" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224355Z:25417ff4-d48d-4143-8d43-dc04b006ea1e" + "WESTUS:20201027T023102Z:afaf3350-255e-4f2b-96e7-6ad7d1a51aac" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10110,7 +4395,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:43:54 GMT" + "Tue, 27 Oct 2020 02:31:01 GMT" ], "Expires": [ "-1" @@ -10123,15 +4408,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10143,22 +4428,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11982" ], "x-ms-request-id": [ - "b002c9cd-a94b-412f-bf5a-941de5f1f148" + "1c5604e6-1f2b-4fe0-95ab-e812ab559919" ], "x-ms-correlation-request-id": [ - "b002c9cd-a94b-412f-bf5a-941de5f1f148" + "1c5604e6-1f2b-4fe0-95ab-e812ab559919" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224410Z:b002c9cd-a94b-412f-bf5a-941de5f1f148" + "WESTUS:20201027T023117Z:1c5604e6-1f2b-4fe0-95ab-e812ab559919" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10167,7 +4452,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:44:09 GMT" + "Tue, 27 Oct 2020 02:31:16 GMT" ], "Expires": [ "-1" @@ -10180,15 +4465,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10200,22 +4485,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11981" ], "x-ms-request-id": [ - "036bc638-bb7d-4b10-9ae0-f0298fc4a713" + "55bd1175-c2fb-4351-b27a-941f393e6d1e" ], "x-ms-correlation-request-id": [ - "036bc638-bb7d-4b10-9ae0-f0298fc4a713" + "55bd1175-c2fb-4351-b27a-941f393e6d1e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224425Z:036bc638-bb7d-4b10-9ae0-f0298fc4a713" + "WESTUS:20201027T023132Z:55bd1175-c2fb-4351-b27a-941f393e6d1e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10224,7 +4509,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:44:24 GMT" + "Tue, 27 Oct 2020 02:31:31 GMT" ], "Expires": [ "-1" @@ -10237,15 +4522,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10257,22 +4542,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11980" ], "x-ms-request-id": [ - "554bca0f-d9ef-444f-a7d7-4f7da607b575" + "86b65f2b-36cf-4391-989e-fb64fdad9f09" ], "x-ms-correlation-request-id": [ - "554bca0f-d9ef-444f-a7d7-4f7da607b575" + "86b65f2b-36cf-4391-989e-fb64fdad9f09" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224440Z:554bca0f-d9ef-444f-a7d7-4f7da607b575" + "WESTUS:20201027T023147Z:86b65f2b-36cf-4391-989e-fb64fdad9f09" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10281,7 +4566,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:44:40 GMT" + "Tue, 27 Oct 2020 02:31:46 GMT" ], "Expires": [ "-1" @@ -10294,15 +4579,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10314,22 +4599,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11979" ], "x-ms-request-id": [ - "6fb1fe4c-c85e-4250-9ce7-fedfe69208c3" + "c94a02f5-1818-4d49-a082-c4fe9c81f6d9" ], "x-ms-correlation-request-id": [ - "6fb1fe4c-c85e-4250-9ce7-fedfe69208c3" + "c94a02f5-1818-4d49-a082-c4fe9c81f6d9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224455Z:6fb1fe4c-c85e-4250-9ce7-fedfe69208c3" + "WESTUS:20201027T023202Z:c94a02f5-1818-4d49-a082-c4fe9c81f6d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10338,7 +4623,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:44:55 GMT" + "Tue, 27 Oct 2020 02:32:01 GMT" ], "Expires": [ "-1" @@ -10351,15 +4636,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10371,16 +4656,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11978" ], "x-ms-request-id": [ - "d0936fbd-511b-4db5-a8e3-7f906b4f7cd9" + "d73731b7-666e-4ab6-85f4-314675e8d120" ], "x-ms-correlation-request-id": [ - "d0936fbd-511b-4db5-a8e3-7f906b4f7cd9" + "d73731b7-666e-4ab6-85f4-314675e8d120" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224510Z:d0936fbd-511b-4db5-a8e3-7f906b4f7cd9" + "WESTUS:20201027T023217Z:d73731b7-666e-4ab6-85f4-314675e8d120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10389,7 +4674,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:10 GMT" + "Tue, 27 Oct 2020 02:32:16 GMT" ], "Expires": [ "-1" @@ -10402,15 +4687,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTk0Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGswTnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg0MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcwTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -10422,16 +4707,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11977" ], "x-ms-request-id": [ - "e37f3112-5d36-4ce1-b52a-6f6607a79c71" + "28ac0fa5-8a53-45e3-bd58-fb7c5fbe7f9a" ], "x-ms-correlation-request-id": [ - "e37f3112-5d36-4ce1-b52a-6f6607a79c71" + "28ac0fa5-8a53-45e3-bd58-fb7c5fbe7f9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224511Z:e37f3112-5d36-4ce1-b52a-6f6607a79c71" + "WESTUS:20201027T023217Z:28ac0fa5-8a53-45e3-bd58-fb7c5fbe7f9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -10440,7 +4725,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:10 GMT" + "Tue, 27 Oct 2020 02:32:16 GMT" ], "Expires": [ "-1" @@ -10455,12 +4740,12 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup9947" + "cdnResourceGroup1841" ], "EndpointPurgeLoadTest": [ - "profile6302", - "endpoint8159", - "origin9879" + "profile6218", + "endpoint4166", + "origin3328" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointStartStopTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointStartStopTest.json index 2f896edfcd4de..96a530cba0e66 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointStartStopTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointStartStopTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b1e74d82-1afe-4739-890e-c867b0aa74d3" + "6a2f2bd8-c9a4-4106-ba81-765d8f7ff300" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "492c30a1-7935-4050-b8ce-58174a003219" + "9a038584-1c19-484d-9263-55876ef53148" ], "x-ms-correlation-request-id": [ - "492c30a1-7935-4050-b8ce-58174a003219" + "9a038584-1c19-484d-9263-55876ef53148" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221635Z:492c30a1-7935-4050-b8ce-58174a003219" + "WESTUS:20201027T021748Z:9a038584-1c19-484d-9263-55876ef53148" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:34 GMT" + "Tue, 27 Oct 2020 02:17:48 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170\",\r\n \"name\": \"cdnResourceGroup7170\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971\",\r\n \"name\": \"cdnResourceGroup8971\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "444d3e26-1540-4465-99eb-579a7677cb86" + "f1134d52-6578-461f-97af-ef739f36dee6" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "d5fb5178-e998-45bb-bf21-4436276787c3" + "2acabf48-c18a-4a6b-b744-19587504fac4" ], "x-ms-client-request-id": [ - "444d3e26-1540-4465-99eb-579a7677cb86" + "f1134d52-6578-461f-97af-ef739f36dee6" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/75b0baa7-c7ec-45cc-afa3-cceeae10c953?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/51014121-af7a-4dc7-9155-9ed0baf78979?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "35e73980-4f15-4895-933a-b8e14a568b6a" + "782e92b5-4a8a-420e-a4d3-adf166123a9e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221641Z:35e73980-4f15-4895-933a-b8e14a568b6a" + "WESTUS:20201027T021754Z:782e92b5-4a8a-420e-a4d3-adf166123a9e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:41 GMT" + "Tue, 27 Oct 2020 02:17:54 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1258\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9658\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/75b0baa7-c7ec-45cc-afa3-cceeae10c953?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzViMGJhYTctYzdlYy00NWNjLWFmYTMtY2NlZWFlMTBjOTUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/51014121-af7a-4dc7-9155-9ed0baf78979?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTEwMTQxMjEtYWY3YS00ZGM3LTkxNTUtOWVkMGJhZjc4OTc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "6d1f6f08-2bb4-4362-b4d8-7917e6f644f1" + "37e1cfce-4c81-47f0-8ad2-eae1fe40aad8" ], "x-ms-client-request-id": [ - "df8657f8-f4fb-47c9-b33c-b2d5ad47eaea" + "b96e5dcb-e525-4a09-a931-fad1a6f0206c" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "22f39583-9f6f-4813-83b6-8f80a1beb7f5" + "22994d14-4cbc-4aed-ba61-68edadb51fd4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221652Z:22f39583-9f6f-4813-83b6-8f80a1beb7f5" + "WESTUS:20201027T021805Z:22994d14-4cbc-4aed-ba61-68edadb51fd4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:16:51 GMT" + "Tue, 27 Oct 2020 02:18:04 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/75b0baa7-c7ec-45cc-afa3-cceeae10c953?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzViMGJhYTctYzdlYy00NWNjLWFmYTMtY2NlZWFlMTBjOTUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/51014121-af7a-4dc7-9155-9ed0baf78979?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTEwMTQxMjEtYWY3YS00ZGM3LTkxNTUtOWVkMGJhZjc4OTc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "dc9ed9e1-8435-4610-a897-1fa6d184c8ab" + "a56592cb-326e-4599-815b-ac68d0793c04" ], "x-ms-client-request-id": [ - "9153bbdd-bce9-4a5e-abd0-1481a12c1288" + "e7650412-7b16-41b2-968c-7a66dc8eaabd" ], "OData-Version": [ "4.0" @@ -264,19 +264,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "ee1d938c-f754-4430-a601-495fa28002ad" + "7d640699-b835-4d08-a89c-7f4072959e76" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221702Z:ee1d938c-f754-4430-a601-495fa28002ad" + "WESTUS:20201027T021815Z:7d640699-b835-4d08-a89c-7f4072959e76" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:01 GMT" + "Tue, 27 Oct 2020 02:18:15 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/75b0baa7-c7ec-45cc-afa3-cceeae10c953?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzViMGJhYTctYzdlYy00NWNjLWFmYTMtY2NlZWFlMTBjOTUzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/51014121-af7a-4dc7-9155-9ed0baf78979?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTEwMTQxMjEtYWY3YS00ZGM3LTkxNTUtOWVkMGJhZjc4OTc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "2e556fd7-14cc-40de-b743-6805f0fb7f6a" + "faccc25f-6192-4377-ac6d-494a21ea0f30" ], "x-ms-client-request-id": [ - "e39829f9-d9da-477d-929c-1d149987b6e3" + "e638c44c-f4ff-44ef-b742-effc04dbec06" ], "OData-Version": [ "4.0" @@ -333,19 +333,88 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "f823c482-23ab-4951-9325-60262cc64263" + "6bf5d896-9fa3-48f3-a5a6-91b65c1c9961" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221712Z:f823c482-23ab-4951-9325-60262cc64263" + "WESTUS:20201027T021825Z:6bf5d896-9fa3-48f3-a5a6-91b65c1c9961" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:12 GMT" + "Tue, 27 Oct 2020 02:18:25 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/51014121-af7a-4dc7-9155-9ed0baf78979?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTEwMTQxMjEtYWY3YS00ZGM3LTkxNTUtOWVkMGJhZjc4OTc5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "25cdb83b-914d-4e39-bbf8-a11b538b081c" + ], + "x-ms-client-request-id": [ + "30ee0d23-4cad-4999-a217-9a498e5b539d" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "7b33cea5-84ef-4d88-946d-d6bb5b06ee6a" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T021835Z:7b33cea5-84ef-4d88-946d-d6bb5b06ee6a" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:18:35 GMT" ], "Content-Length": [ "77" @@ -361,16 +430,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +450,10 @@ "no-cache" ], "x-ms-request-id": [ - "e1f53614-317f-4673-bc6f-6f3b10e7b7ab" + "4cfac9c0-b2ee-4474-a411-6f11488f04c9" ], "x-ms-client-request-id": [ - "fd0b8983-dc59-4dec-a6e0-6a854038a8c9" + "a8a0a648-d589-49b8-b569-d52a106bf75f" ], "OData-Version": [ "4.0" @@ -405,16 +474,16 @@ "49" ], "x-ms-correlation-request-id": [ - "a4440b3f-1603-4dc4-9aa3-f0c05379a712" + "5c83ab0b-9276-474f-89c2-85a04bd00816" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221713Z:a4440b3f-1603-4dc4-9aa3-f0c05379a712" + "WESTUS:20201027T021836Z:5c83ab0b-9276-474f-89c2-85a04bd00816" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:13 GMT" + "Tue, 27 Oct 2020 02:18:36 GMT" ], "Content-Length": [ "397" @@ -426,26 +495,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1258\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9658\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "2bcdcdef-858c-468e-8cda-0c3d8f0f3ac9" + "1a0e98ab-2374-43b8-b4c9-5ddf0be4a90d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +534,13 @@ "10" ], "x-ms-request-id": [ - "ec21e0dc-b7b5-4995-b2fb-6046d835f245" + "823238b4-a22f-46a0-ba74-41022bc79076" ], "x-ms-client-request-id": [ - "2bcdcdef-858c-468e-8cda-0c3d8f0f3ac9" + "1a0e98ab-2374-43b8-b4c9-5ddf0be4a90d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5fb903fd-9bd3-4d3b-b5ca-164567ca0112?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/6acadac4-d3ff-441b-945c-7c72db135938?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -492,16 +561,16 @@ "99" ], "x-ms-correlation-request-id": [ - "c40bd433-87d9-4d99-9900-c11c46c62d5a" + "ce459a7c-7a01-4de7-85a1-fd0202d91c97" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221717Z:c40bd433-87d9-4d99-9900-c11c46c62d5a" + "WESTUS:20201027T021841Z:ce459a7c-7a01-4de7-85a1-fd0202d91c97" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:16 GMT" + "Tue, 27 Oct 2020 02:18:40 GMT" ], "Content-Length": [ "1234" @@ -513,20 +582,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5fb903fd-9bd3-4d3b-b5ca-164567ca0112?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWZiOTAzZmQtOWJkMy00ZDNiLWI1Y2EtMTY0NTY3Y2EwMTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/6acadac4-d3ff-441b-945c-7c72db135938?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNmFjYWRhYzQtZDNmZi00NDFiLTk0NWMtN2M3MmRiMTM1OTM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "5bd7df5f-8977-4293-9216-a40218d32c77" + "325b34e4-178a-4353-9d80-9c5d11035bc0" ], "x-ms-client-request-id": [ - "9c11064b-69d4-4a7e-bc03-5db148c03863" + "d6e0a897-4a00-4e63-b926-2f00cf7bef88" ], "OData-Version": [ "4.0" @@ -558,19 +627,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-correlation-request-id": [ - "0b002257-229a-4c1e-9c3d-f0a67b8c91d2" + "2851d805-ce99-40c8-b99a-7f29d9aced65" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221727Z:0b002257-229a-4c1e-9c3d-f0a67b8c91d2" + "WESTUS:20201027T021851Z:2851d805-ce99-40c8-b99a-7f29d9aced65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:27 GMT" + "Tue, 27 Oct 2020 02:18:51 GMT" ], "Content-Length": [ "78" @@ -586,16 +655,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5fb903fd-9bd3-4d3b-b5ca-164567ca0112?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWZiOTAzZmQtOWJkMy00ZDNiLWI1Y2EtMTY0NTY3Y2EwMTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/6acadac4-d3ff-441b-945c-7c72db135938?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNmFjYWRhYzQtZDNmZi00NDFiLTk0NWMtN2M3MmRiMTM1OTM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +675,10 @@ "no-cache" ], "x-ms-request-id": [ - "4b983649-adf3-4deb-972e-19986015bfa2" + "f4c98cc2-571c-4182-86a1-66b146940a16" ], "x-ms-client-request-id": [ - "84340019-42ec-4b62-af54-a387799adba6" + "3e26e2b1-eb5f-4969-8708-f864d6195cf0" ], "OData-Version": [ "4.0" @@ -627,19 +696,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-correlation-request-id": [ - "d640ab33-6942-4d42-bfc7-7b8c0cc6fa86" + "3d77e6b4-31ee-4670-b6c7-896c497a265b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221738Z:d640ab33-6942-4d42-bfc7-7b8c0cc6fa86" + "WESTUS:20201027T021901Z:3d77e6b4-31ee-4670-b6c7-896c497a265b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:37 GMT" + "Tue, 27 Oct 2020 02:19:01 GMT" ], "Content-Length": [ "77" @@ -655,16 +724,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +744,10 @@ "no-cache" ], "x-ms-request-id": [ - "18de4346-4e92-43a6-9397-78c66ca255ea" + "82b56331-24dd-45c9-a90d-e14544b6eb2a" ], "x-ms-client-request-id": [ - "1354b895-9299-4e2d-a45b-d8282ed84a06" + "846bf3e6-b6e4-42a6-916c-3f15cad43b47" ], "OData-Version": [ "4.0" @@ -699,16 +768,16 @@ "49" ], "x-ms-correlation-request-id": [ - "a6ba3271-198b-459a-82b6-6fb3c1d74a62" + "92ea50fa-a8bd-4577-998c-0c89fbcdbcec" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221739Z:a6ba3271-198b-459a-82b6-6fb3c1d74a62" + "WESTUS:20201027T021903Z:92ea50fa-a8bd-4577-998c-0c89fbcdbcec" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:38 GMT" + "Tue, 27 Oct 2020 02:19:02 GMT" ], "Content-Length": [ "1234" @@ -720,26 +789,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff5939ff-6256-4567-a0ea-3e0821e6b33b" + "006a822a-a17d-47c5-9871-ecaa257a429b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -750,10 +819,10 @@ "no-cache" ], "x-ms-request-id": [ - "8a35661a-042e-402f-8efc-5853839a0857" + "d3f3e652-9593-491e-ab84-e6da664a4656" ], "x-ms-client-request-id": [ - "ff5939ff-6256-4567-a0ea-3e0821e6b33b" + "006a822a-a17d-47c5-9871-ecaa257a429b" ], "OData-Version": [ "4.0" @@ -774,16 +843,16 @@ "48" ], "x-ms-correlation-request-id": [ - "ba201ed6-a97a-4c27-9d59-fdbe8ff60502" + "bc85c158-39a1-4669-81b2-84f5de1e1a67" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221803Z:ba201ed6-a97a-4c27-9d59-fdbe8ff60502" + "WESTUS:20201027T021927Z:bc85c158-39a1-4669-81b2-84f5de1e1a67" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:03 GMT" + "Tue, 27 Oct 2020 02:19:26 GMT" ], "Content-Length": [ "1234" @@ -795,26 +864,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3f931af5-0280-4d38-87ee-a7826d87fa97" + "a0ef074c-ee7f-40f7-a8c4-d66d49fb4bfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -825,10 +894,10 @@ "no-cache" ], "x-ms-request-id": [ - "9d4eed96-9a03-4f29-9174-91b7ad1ece56" + "db563137-f2d8-4c0e-813c-3944fc5673b1" ], "x-ms-client-request-id": [ - "3f931af5-0280-4d38-87ee-a7826d87fa97" + "a0ef074c-ee7f-40f7-a8c4-d66d49fb4bfc" ], "OData-Version": [ "4.0" @@ -849,16 +918,16 @@ "47" ], "x-ms-correlation-request-id": [ - "66375712-7020-40dc-b85c-098792a5d2b7" + "d8b9e1a2-e13c-4ecc-9366-1b3d8c3848e2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221818Z:66375712-7020-40dc-b85c-098792a5d2b7" + "WESTUS:20201027T021951Z:d8b9e1a2-e13c-4ecc-9366-1b3d8c3848e2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:18 GMT" + "Tue, 27 Oct 2020 02:19:50 GMT" ], "Content-Length": [ "1234" @@ -870,26 +939,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768/stop?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njgvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987/stop?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODcvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab60e78d-dd1b-4553-8caa-ac2d4f9836e4" + "b22e2453-502f-4dc8-b783-6ccbc093e77c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -900,19 +969,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454/profileresults/profile1258/endpointresults/endpoint2768?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f/profileresults/profile9658/endpointresults/endpoint9987?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "edb177f3-76f8-4761-8527-bc6b5ab18d85" + "ef16e7b3-e3b0-4870-a5d2-06a755911d58" ], "x-ms-client-request-id": [ - "ab60e78d-dd1b-4553-8caa-ac2d4f9836e4" + "b22e2453-502f-4dc8-b783-6ccbc093e77c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -933,16 +1002,16 @@ "49" ], "x-ms-correlation-request-id": [ - "0261cba9-ea4a-4e63-b400-1ea8396fe7df" + "ff42aee2-bc24-474b-bbbb-4e05e92685f4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221741Z:0261cba9-ea4a-4e63-b400-1ea8396fe7df" + "WESTUS:20201027T021904Z:ff42aee2-bc24-474b-bbbb-4e05e92685f4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:40 GMT" + "Tue, 27 Oct 2020 02:19:04 GMT" ], "Content-Length": [ "911" @@ -954,20 +1023,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTAyNGQwNDQtNTA3Yi00ZDJiLTg1ZjQtYmVlMTI0NzA4NDU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjAwZGNiYTUtMmIzMS00MWZmLWI0YzEtYTI4YjAyMjUxMzhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -978,10 +1047,10 @@ "no-cache" ], "x-ms-request-id": [ - "ac090ace-6cdc-40e6-9818-512c421c0386" + "c9081df1-9ae1-46d5-bf8f-e505fdc50d3b" ], "x-ms-client-request-id": [ - "afb2739a-3414-46ef-9fe9-38bed8101510" + "b28e09ec-cc31-46b9-8865-6fd6f22600bf" ], "OData-Version": [ "4.0" @@ -999,19 +1068,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-correlation-request-id": [ - "dc0c70a9-fe76-4a08-ae71-1270f994c00e" + "1eafcd5b-f4a6-4233-9dcf-a930c02919cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221751Z:dc0c70a9-fe76-4a08-ae71-1270f994c00e" + "WESTUS:20201027T021915Z:1eafcd5b-f4a6-4233-9dcf-a930c02919cd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:17:50 GMT" + "Tue, 27 Oct 2020 02:19:14 GMT" ], "Content-Length": [ "78" @@ -1027,16 +1096,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTAyNGQwNDQtNTA3Yi00ZDJiLTg1ZjQtYmVlMTI0NzA4NDU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjAwZGNiYTUtMmIzMS00MWZmLWI0YzEtYTI4YjAyMjUxMzhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1047,10 +1116,10 @@ "no-cache" ], "x-ms-request-id": [ - "3d65eaec-121d-4154-b744-2c6d23bb3f4a" + "cc3e437c-2336-4607-a0cf-cb4d568fc9af" ], "x-ms-client-request-id": [ - "72fe724d-a846-4220-9da8-a51ed4965621" + "d78318ce-717e-4e32-b531-47e8a596dafc" ], "OData-Version": [ "4.0" @@ -1068,19 +1137,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11992" ], "x-ms-correlation-request-id": [ - "1b2bbfef-2416-4dd2-8230-89939bdf8db7" + "c8e6a9e9-433f-442d-bb40-1b1aad2abce3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221801Z:1b2bbfef-2416-4dd2-8230-89939bdf8db7" + "WESTUS:20201027T021925Z:c8e6a9e9-433f-442d-bb40-1b1aad2abce3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:00 GMT" + "Tue, 27 Oct 2020 02:19:24 GMT" ], "Content-Length": [ "77" @@ -1096,16 +1165,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454/profileresults/profile1258/endpointresults/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTAyNGQwNDQtNTA3Yi00ZDJiLTg1ZjQtYmVlMTI0NzA4NDU0L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f/profileresults/profile9658/endpointresults/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjAwZGNiYTUtMmIzMS00MWZmLWI0YzEtYTI4YjAyMjUxMzhmL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1116,10 +1185,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc119c00-22d4-4787-a1a9-2be168b0459b" + "6674491b-c8f4-4786-94e9-80ef0c2f0092" ], "x-ms-client-request-id": [ - "fd5973e9-04a5-4ab4-9b73-cf31dbeafe3c" + "5fba696a-f956-488d-84a3-9995d72acad6" ], "OData-Version": [ "4.0" @@ -1137,19 +1206,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-correlation-request-id": [ - "c44efab2-d066-402e-8213-453a8585f617" + "b8c5356f-59cf-45db-82e4-94ad54e2de99" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221802Z:c44efab2-d066-402e-8213-453a8585f617" + "WESTUS:20201027T021926Z:b8c5356f-59cf-45db-82e4-94ad54e2de99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:01 GMT" + "Tue, 27 Oct 2020 02:19:25 GMT" ], "Content-Length": [ "1329" @@ -1161,26 +1230,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/e024d044-507b-4d2b-85f4-bee124708454/profileresults/profile1258/endpointresults/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/b00dcba5-2b31-41ff-b4c1-a28b0225138f/profileresults/profile9658/endpointresults/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7170/providers/Microsoft.Cdn/profiles/profile1258/endpoints/endpoint2768/start?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cy9lbmRwb2ludDI3Njgvc3RhcnQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8971/providers/Microsoft.Cdn/profiles/profile9658/endpoints/endpoint9987/start?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cy9lbmRwb2ludDk5ODcvc3RhcnQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "6aab7ae8-e2bb-47bb-8686-9ccce62606ad" + "a78c9fd6-d7ba-4bfe-9271-b4b93a51a376" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1191,19 +1260,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5e984c43-1e09-4207-b267-e9333c5badf7/profileresults/profile1258/endpointresults/endpoint2768?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612/profileresults/profile9658/endpointresults/endpoint9987?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "4209f2ca-2234-4d8b-a95d-ec11c9a774a4" + "a321b613-0945-4a88-8c25-3c111e84c758" ], "x-ms-client-request-id": [ - "6aab7ae8-e2bb-47bb-8686-9ccce62606ad" + "a78c9fd6-d7ba-4bfe-9271-b4b93a51a376" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5e984c43-1e09-4207-b267-e9333c5badf7?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1224,16 +1293,16 @@ "49" ], "x-ms-correlation-request-id": [ - "2ccd79eb-1b91-4c15-ba16-0eb5615301b1" + "66bdc8ee-6b32-4813-a7b7-e988016df6cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221806Z:2ccd79eb-1b91-4c15-ba16-0eb5615301b1" + "WESTUS:20201027T021929Z:66bdc8ee-6b32-4813-a7b7-e988016df6cb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:05 GMT" + "Tue, 27 Oct 2020 02:19:28 GMT" ], "Content-Length": [ "911" @@ -1245,20 +1314,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5e984c43-1e09-4207-b267-e9333c5badf7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWU5ODRjNDMtMWUwOS00MjA3LWIyNjctZTkzMzNjNWJhZGY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODA4ZTI5YmQtYTQ0OS00ZTVmLTg5NzQtMGE0YjYxYzA4NjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1269,10 +1338,10 @@ "no-cache" ], "x-ms-request-id": [ - "73aa3574-8daf-4a51-8b3c-932d21325d43" + "0da37b71-c1b3-4326-a5a5-66230f4abe95" ], "x-ms-client-request-id": [ - "c3c30fa9-67b5-4da4-b3df-2aae12a0ef29" + "2541a781-0d27-41d8-affd-539f1810b415" ], "OData-Version": [ "4.0" @@ -1290,19 +1359,88 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-correlation-request-id": [ - "8942cdd4-e9ae-4d1d-9962-a88ee7ee9b3a" + "7d7f96d7-f63e-4d38-b7ec-a89b4bce8262" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221816Z:8942cdd4-e9ae-4d1d-9962-a88ee7ee9b3a" + "WESTUS:20201027T021939Z:7d7f96d7-f63e-4d38-b7ec-a89b4bce8262" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:15 GMT" + "Tue, 27 Oct 2020 02:19:38 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODA4ZTI5YmQtYTQ0OS00ZTVmLTg5NzQtMGE0YjYxYzA4NjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8880cef5-6562-40aa-88e6-524b2194c867" + ], + "x-ms-client-request-id": [ + "52ee3977-d91e-4691-8c76-30c15cb70e53" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "dd79fb9d-3e9d-42c6-b00b-f54985e15a8f" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T021949Z:dd79fb9d-3e9d-42c6-b00b-f54985e15a8f" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:19:48 GMT" ], "Content-Length": [ "77" @@ -1318,16 +1456,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5e984c43-1e09-4207-b267-e9333c5badf7/profileresults/profile1258/endpointresults/endpoint2768?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWU5ODRjNDMtMWUwOS00MjA3LWIyNjctZTkzMzNjNWJhZGY3L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxMjU4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDI3Njg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612/profileresults/profile9658/endpointresults/endpoint9987?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODA4ZTI5YmQtYTQ0OS00ZTVmLTg5NzQtMGE0YjYxYzA4NjEyL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU5NjU4L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDk5ODc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1338,10 +1476,10 @@ "no-cache" ], "x-ms-request-id": [ - "afd0ba00-d47d-49b8-9bc8-eedd1b51d6fc" + "4521f609-6ec9-4d30-b496-4e8c6a98a544" ], "x-ms-client-request-id": [ - "64f54858-eb8f-41c9-98d4-1b39bb845d1a" + "a639cc47-f369-4a1a-8c75-f30f2e4f0e1d" ], "OData-Version": [ "4.0" @@ -1359,19 +1497,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11988" ], "x-ms-correlation-request-id": [ - "1ce1c1c8-1789-402a-9431-a369514dfade" + "1a0055f5-c7df-490b-9791-6a8147c9a375" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221817Z:1ce1c1c8-1789-402a-9431-a369514dfade" + "WESTUS:20201027T021950Z:1a0055f5-c7df-490b-9791-6a8147c9a375" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:17 GMT" + "Tue, 27 Oct 2020 02:19:49 GMT" ], "Content-Length": [ "1329" @@ -1383,25 +1521,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2768\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170/providers/Microsoft.Cdn/operationresults/5e984c43-1e09-4207-b267-e9333c5badf7/profileresults/profile1258/endpointresults/endpoint2768\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2768.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint9987\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971/providers/Microsoft.Cdn/operationresults/808e29bd-a449-4e5f-8974-0a4b61c08612/profileresults/profile9658/endpointresults/endpoint9987\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint9987.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7170?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MTcwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8971?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTcxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98a87eeb-6c00-433b-8db4-96ab44df791a" + "4eb9937a-0e48-48a4-9cd4-e26ca96931c7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1413,7 +1551,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1422,13 +1560,13 @@ "14999" ], "x-ms-request-id": [ - "198ab650-7ec6-4ed7-80ca-eb35bab42439" + "4f86a44f-b9e2-4b1e-a268-5a0dd35bea67" ], "x-ms-correlation-request-id": [ - "198ab650-7ec6-4ed7-80ca-eb35bab42439" + "4f86a44f-b9e2-4b1e-a268-5a0dd35bea67" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221818Z:198ab650-7ec6-4ed7-80ca-eb35bab42439" + "WESTUS:20201027T021952Z:4f86a44f-b9e2-4b1e-a268-5a0dd35bea67" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1575,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:18 GMT" + "Tue, 27 Oct 2020 02:19:51 GMT" ], "Expires": [ "-1" @@ -1450,15 +1588,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1470,22 +1608,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11999" ], "x-ms-request-id": [ - "8a6470e7-e0d7-453b-a8a6-b76d34b9068b" + "60cbe171-cf14-4bd9-8e7e-0c2f8c2734f3" ], "x-ms-correlation-request-id": [ - "8a6470e7-e0d7-453b-a8a6-b76d34b9068b" + "60cbe171-cf14-4bd9-8e7e-0c2f8c2734f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221833Z:8a6470e7-e0d7-453b-a8a6-b76d34b9068b" + "WESTUS:20201027T022007Z:60cbe171-cf14-4bd9-8e7e-0c2f8c2734f3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,7 +1632,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:33 GMT" + "Tue, 27 Oct 2020 02:20:06 GMT" ], "Expires": [ "-1" @@ -1507,15 +1645,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1527,22 +1665,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11998" ], "x-ms-request-id": [ - "0afd9af7-57af-4e2d-8c83-3142717f1526" + "b65a7133-2f2a-4b1b-bd4c-d6a1eaf6bb43" ], "x-ms-correlation-request-id": [ - "0afd9af7-57af-4e2d-8c83-3142717f1526" + "b65a7133-2f2a-4b1b-bd4c-d6a1eaf6bb43" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221848Z:0afd9af7-57af-4e2d-8c83-3142717f1526" + "WESTUS:20201027T022022Z:b65a7133-2f2a-4b1b-bd4c-d6a1eaf6bb43" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,7 +1689,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:18:48 GMT" + "Tue, 27 Oct 2020 02:20:21 GMT" ], "Expires": [ "-1" @@ -1564,15 +1702,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1584,22 +1722,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11997" ], "x-ms-request-id": [ - "7cef0140-5313-4e74-9304-2b9e5d134e12" + "8a1df1a0-ddff-4edc-b4b3-a432156a4749" ], "x-ms-correlation-request-id": [ - "7cef0140-5313-4e74-9304-2b9e5d134e12" + "8a1df1a0-ddff-4edc-b4b3-a432156a4749" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221903Z:7cef0140-5313-4e74-9304-2b9e5d134e12" + "WESTUS:20201027T022037Z:8a1df1a0-ddff-4edc-b4b3-a432156a4749" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1746,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:19:02 GMT" + "Tue, 27 Oct 2020 02:20:36 GMT" ], "Expires": [ "-1" @@ -1621,15 +1759,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1641,22 +1779,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11996" ], "x-ms-request-id": [ - "781f363e-9f21-4836-a2e5-a1fd70168024" + "c36d3fa0-43ef-499d-9ccc-d35a82705424" ], "x-ms-correlation-request-id": [ - "781f363e-9f21-4836-a2e5-a1fd70168024" + "c36d3fa0-43ef-499d-9ccc-d35a82705424" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221918Z:781f363e-9f21-4836-a2e5-a1fd70168024" + "WESTUS:20201027T022052Z:c36d3fa0-43ef-499d-9ccc-d35a82705424" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,7 +1803,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:19:17 GMT" + "Tue, 27 Oct 2020 02:20:51 GMT" ], "Expires": [ "-1" @@ -1678,15 +1816,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1698,22 +1836,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11995" ], "x-ms-request-id": [ - "712fc990-c826-4a0d-8853-41089945c2d2" + "be6a223c-fc42-4396-9835-7df0e344a21e" ], "x-ms-correlation-request-id": [ - "712fc990-c826-4a0d-8853-41089945c2d2" + "be6a223c-fc42-4396-9835-7df0e344a21e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221933Z:712fc990-c826-4a0d-8853-41089945c2d2" + "WESTUS:20201027T022107Z:be6a223c-fc42-4396-9835-7df0e344a21e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1722,7 +1860,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:19:32 GMT" + "Tue, 27 Oct 2020 02:21:07 GMT" ], "Expires": [ "-1" @@ -1735,15 +1873,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1755,22 +1893,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" + "11994" ], "x-ms-request-id": [ - "9174a15c-bc5c-4c10-bb3b-3347e0e6e752" + "7bb820db-a4f6-4258-9c7e-9d7df452a842" ], "x-ms-correlation-request-id": [ - "9174a15c-bc5c-4c10-bb3b-3347e0e6e752" + "7bb820db-a4f6-4258-9c7e-9d7df452a842" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T221948Z:9174a15c-bc5c-4c10-bb3b-3347e0e6e752" + "WESTUS:20201027T022122Z:7bb820db-a4f6-4258-9c7e-9d7df452a842" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,7 +1917,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:19:47 GMT" + "Tue, 27 Oct 2020 02:21:22 GMT" ], "Expires": [ "-1" @@ -1792,15 +1930,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1812,22 +1950,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11993" ], "x-ms-request-id": [ - "f3583fc9-6815-4ac5-b237-91dcb060a241" + "20d2d98d-e822-4f8a-a5fd-735ea44136e7" ], "x-ms-correlation-request-id": [ - "f3583fc9-6815-4ac5-b237-91dcb060a241" + "20d2d98d-e822-4f8a-a5fd-735ea44136e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222003Z:f3583fc9-6815-4ac5-b237-91dcb060a241" + "WESTUS:20201027T022137Z:20d2d98d-e822-4f8a-a5fd-735ea44136e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1836,7 +1974,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:20:02 GMT" + "Tue, 27 Oct 2020 02:21:37 GMT" ], "Expires": [ "-1" @@ -1849,15 +1987,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1869,22 +2007,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11992" ], "x-ms-request-id": [ - "abde0c81-8b6d-4334-8bb6-245e884dc71d" + "031e090d-6d9d-4af4-aadc-f8e1b6e27555" ], "x-ms-correlation-request-id": [ - "abde0c81-8b6d-4334-8bb6-245e884dc71d" + "031e090d-6d9d-4af4-aadc-f8e1b6e27555" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222018Z:abde0c81-8b6d-4334-8bb6-245e884dc71d" + "WESTUS:20201027T022152Z:031e090d-6d9d-4af4-aadc-f8e1b6e27555" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +2031,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:20:18 GMT" + "Tue, 27 Oct 2020 02:21:52 GMT" ], "Expires": [ "-1" @@ -1906,15 +2044,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1926,22 +2064,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11991" ], "x-ms-request-id": [ - "d20bab06-6726-4bc8-8d1a-9c9739cc787a" + "467cbd01-3c86-45e5-99d2-f86c8fefbd54" ], "x-ms-correlation-request-id": [ - "d20bab06-6726-4bc8-8d1a-9c9739cc787a" + "467cbd01-3c86-45e5-99d2-f86c8fefbd54" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222033Z:d20bab06-6726-4bc8-8d1a-9c9739cc787a" + "WESTUS:20201027T022207Z:467cbd01-3c86-45e5-99d2-f86c8fefbd54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1950,7 +2088,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:20:33 GMT" + "Tue, 27 Oct 2020 02:22:07 GMT" ], "Expires": [ "-1" @@ -1963,15 +2101,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1983,22 +2121,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11990" ], "x-ms-request-id": [ - "42048c40-30c7-4070-8a10-fb36bbd360ce" + "034477e5-7615-4c52-9f93-add2f151cee5" ], "x-ms-correlation-request-id": [ - "42048c40-30c7-4070-8a10-fb36bbd360ce" + "034477e5-7615-4c52-9f93-add2f151cee5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222049Z:42048c40-30c7-4070-8a10-fb36bbd360ce" + "WESTUS:20201027T022222Z:034477e5-7615-4c52-9f93-add2f151cee5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2007,7 +2145,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:20:48 GMT" + "Tue, 27 Oct 2020 02:22:22 GMT" ], "Expires": [ "-1" @@ -2020,15 +2158,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2040,16 +2178,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11978" + "11989" ], "x-ms-request-id": [ - "1f39d34a-c905-4251-bd1a-6247d5d6c793" + "cb858c28-103b-4f68-816a-e1d0ec961e27" ], "x-ms-correlation-request-id": [ - "1f39d34a-c905-4251-bd1a-6247d5d6c793" + "cb858c28-103b-4f68-816a-e1d0ec961e27" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222104Z:1f39d34a-c905-4251-bd1a-6247d5d6c793" + "WESTUS:20201027T022237Z:cb858c28-103b-4f68-816a-e1d0ec961e27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,7 +2196,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:03 GMT" + "Tue, 27 Oct 2020 02:22:37 GMT" ], "Expires": [ "-1" @@ -2071,15 +2209,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzE3MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekUzTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODk3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGszTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2091,16 +2229,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11977" + "11988" ], "x-ms-request-id": [ - "a9d64fd9-8266-42c1-abdf-22d9d5ce8ca1" + "88eff668-e9f6-4370-b210-51be08d33090" ], "x-ms-correlation-request-id": [ - "a9d64fd9-8266-42c1-abdf-22d9d5ce8ca1" + "88eff668-e9f6-4370-b210-51be08d33090" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T222104Z:a9d64fd9-8266-42c1-abdf-22d9d5ce8ca1" + "WESTUS:20201027T022237Z:88eff668-e9f6-4370-b210-51be08d33090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,7 +2247,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:21:03 GMT" + "Tue, 27 Oct 2020 02:22:37 GMT" ], "Expires": [ "-1" @@ -2124,11 +2262,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup7170" + "cdnResourceGroup8971" ], "EndpointStartStopTest": [ - "profile1258", - "endpoint2768" + "profile9658", + "endpoint9987" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointUpdateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointUpdateTest.json index c125575a820bf..fdd55779dcc26 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointUpdateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/EndpointUpdateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "a1ec0f4c-ee77-4492-a7b0-797c10865d4c" + "726b96ca-6959-43ee-981a-243400827593" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "8b82f678-e243-4bbc-8420-b0b94e55b1d5" + "8ae249fc-5e80-4e8b-839f-5f1bc3146808" ], "x-ms-correlation-request-id": [ - "8b82f678-e243-4bbc-8420-b0b94e55b1d5" + "8ae249fc-5e80-4e8b-839f-5f1bc3146808" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224512Z:8b82f678-e243-4bbc-8420-b0b94e55b1d5" + "WESTUS:20201027T023218Z:8ae249fc-5e80-4e8b-839f-5f1bc3146808" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:11 GMT" + "Tue, 27 Oct 2020 02:32:18 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000\",\r\n \"name\": \"cdnResourceGroup1000\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910\",\r\n \"name\": \"cdnResourceGroup5910\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4d4dad24-3b89-4ab5-b80c-a8fe6633718a" + "c375619b-659f-4ec4-aebb-b01ed9e2f895" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "4b2ecf01-5188-4b4c-a7d3-0ce229e1258e" + "e0aaeff1-e334-4f52-855b-a608e287d482" ], "x-ms-client-request-id": [ - "4d4dad24-3b89-4ab5-b80c-a8fe6633718a" + "c375619b-659f-4ec4-aebb-b01ed9e2f895" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/0e852432-1c22-4a39-8188-18f062e41713?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/68ae1e32-feb8-4926-96a5-8b5e64b12ad1?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "3fe1e3a7-2618-44bb-af5e-9351016105a9" + "b4bd5d48-1b30-43d5-b572-842312acb2d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224520Z:3fe1e3a7-2618-44bb-af5e-9351016105a9" + "WESTUS:20201027T023224Z:b4bd5d48-1b30-43d5-b572-842312acb2d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:19 GMT" + "Tue, 27 Oct 2020 02:32:24 GMT" ], "Content-Length": [ "397" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6525\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile3963\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/0e852432-1c22-4a39-8188-18f062e41713?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGU4NTI0MzItMWMyMi00YTM5LTgxODgtMThmMDYyZTQxNzEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/68ae1e32-feb8-4926-96a5-8b5e64b12ad1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjhhZTFlMzItZmViOC00OTI2LTk2YTUtOGI1ZTY0YjEyYWQxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "15c12c03-243c-4d69-8c5d-f850e4e0c507" + "92fe7aa1-3331-4a81-b41f-f3264d633f89" ], "x-ms-client-request-id": [ - "9326adf4-3b10-4cd9-b899-ed960b6999c6" + "103a3f70-98b9-47ca-8747-c4e7a859fa30" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "6a40c229-36c6-4046-8721-f597a70d8477" + "f2a057d8-0b10-4a05-a2a5-e3c7b5645022" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224530Z:6a40c229-36c6-4046-8721-f597a70d8477" + "WESTUS:20201027T023235Z:f2a057d8-0b10-4a05-a2a5-e3c7b5645022" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:29 GMT" + "Tue, 27 Oct 2020 02:32:34 GMT" ], "Content-Length": [ "77" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "788f7358-9790-466d-b3a0-3dbc51b07420" + "f3cdda41-3a31-4df2-b6e8-9d511909a3bc" ], "x-ms-client-request-id": [ - "63079cd1-95db-4a2e-989b-ae39bb871169" + "a799e5ca-dbb7-4d13-849a-28b0331e2c4b" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "49" ], "x-ms-correlation-request-id": [ - "dc50701b-8299-4659-bd80-5edd5b0b3009" + "1528aa5b-cff0-4e37-9343-2dd608bd5057" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224531Z:dc50701b-8299-4659-bd80-5edd5b0b3009" + "WESTUS:20201027T023236Z:1528aa5b-cff0-4e37-9343-2dd608bd5057" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:30 GMT" + "Tue, 27 Oct 2020 02:32:35 GMT" ], "Content-Length": [ "396" @@ -288,26 +288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile6525\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile3963\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "01e08fb3-74ec-4cfc-b5cd-5a0422c2ad46" + "eb230db1-7599-4a93-b13f-b454ab6d1b57" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -327,13 +327,13 @@ "10" ], "x-ms-request-id": [ - "2b0cb7a1-76eb-46e7-8730-e3114d0cc1df" + "e1bfd565-e367-496b-bfa3-59e61e698c04" ], "x-ms-client-request-id": [ - "01e08fb3-74ec-4cfc-b5cd-5a0422c2ad46" + "eb230db1-7599-4a93-b13f-b454ab6d1b57" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/8f26aab2-5515-44ac-93da-d9823b862a9a?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/480f3788-e5f6-4deb-886f-efaf826fef29?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -354,16 +354,16 @@ "99" ], "x-ms-correlation-request-id": [ - "36a2c363-c5a0-4f41-9de4-32f835d58bb7" + "38005c3d-cdf8-4ff3-8586-f5a46f616591" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224535Z:36a2c363-c5a0-4f41-9de4-32f835d58bb7" + "WESTUS:20201027T023240Z:38005c3d-cdf8-4ff3-8586-f5a46f616591" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:34 GMT" + "Tue, 27 Oct 2020 02:32:40 GMT" ], "Content-Length": [ "1234" @@ -375,20 +375,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint6535\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6535.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1290\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1290.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/8f26aab2-5515-44ac-93da-d9823b862a9a?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGYyNmFhYjItNTUxNS00NGFjLTkzZGEtZDk4MjNiODYyYTlhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/480f3788-e5f6-4deb-886f-efaf826fef29?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDgwZjM3ODgtZTVmNi00ZGViLTg4NmYtZWZhZjgyNmZlZjI5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -399,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "07acdcec-ac5a-451d-ac22-e709a62c6a31" + "a99c19ba-6777-48aa-b676-b9e603b6440a" ], "x-ms-client-request-id": [ - "93c00346-4a5e-4264-863d-6532d39ebc84" + "8e43d688-2241-49ed-9b5b-3e06fbd51d62" ], "OData-Version": [ "4.0" @@ -423,16 +423,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "c3ad04f7-0b5e-4e41-bee9-e57bea398219" + "ff9be610-f6bd-414a-ab76-57af5bbe81ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224545Z:c3ad04f7-0b5e-4e41-bee9-e57bea398219" + "WESTUS:20201027T023251Z:ff9be610-f6bd-414a-ab76-57af5bbe81ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:44 GMT" + "Tue, 27 Oct 2020 02:32:50 GMT" ], "Content-Length": [ "78" @@ -448,16 +448,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/8f26aab2-5515-44ac-93da-d9823b862a9a?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGYyNmFhYjItNTUxNS00NGFjLTkzZGEtZDk4MjNiODYyYTlhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/480f3788-e5f6-4deb-886f-efaf826fef29?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDgwZjM3ODgtZTVmNi00ZGViLTg4NmYtZWZhZjgyNmZlZjI5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -468,10 +468,10 @@ "no-cache" ], "x-ms-request-id": [ - "7a446414-5d69-484c-b96e-cb94b098efd3" + "42f59836-f333-4de5-af60-7e6cb3f58e11" ], "x-ms-client-request-id": [ - "02e2bfa3-ee1b-4931-bdcb-514939eaaa75" + "8cc47829-b69d-4ce4-b50e-85d621fee954" ], "OData-Version": [ "4.0" @@ -492,16 +492,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "7b180b3f-ce7e-4065-a60a-b4cdf3590355" + "6c95f0f6-f4f7-436d-a521-cd60272922ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224555Z:7b180b3f-ce7e-4065-a60a-b4cdf3590355" + "WESTUS:20201027T023301Z:6c95f0f6-f4f7-436d-a521-cd60272922ce" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:55 GMT" + "Tue, 27 Oct 2020 02:33:01 GMT" ], "Content-Length": [ "77" @@ -517,16 +517,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "7717fddc-cdee-41fe-af44-9260d412b9fa" + "921bd0b9-6502-480c-8b14-891b671084ba" ], "x-ms-client-request-id": [ - "818f6286-7056-436e-9205-7978fc93cd28" + "d99bc062-d1b0-427e-bc6a-0bcb9b64d613" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "49" ], "x-ms-correlation-request-id": [ - "5c7c0b17-a5e2-4f5c-b54b-7b31b0ab078c" + "b48791ea-b25a-4532-9670-048540a14e4d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224556Z:5c7c0b17-a5e2-4f5c-b54b-7b31b0ab078c" + "WESTUS:20201027T023302Z:b48791ea-b25a-4532-9670-048540a14e4d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:56 GMT" + "Tue, 27 Oct 2020 02:33:02 GMT" ], "Content-Length": [ "1234" @@ -582,20 +582,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint6535\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6535.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1290\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1290.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "22508050-0555-4e33-85a9-3cc02c4608ea" + "61c8b743-906e-4a56-af20-04b5dd4d4787" ], "x-ms-client-request-id": [ - "bf3a35d0-1017-4e17-a1b0-bac57f8f4e5c" + "eee7cf1a-8e97-4c65-a63f-4f11f663355c" ], "OData-Version": [ "4.0" @@ -630,16 +630,16 @@ "48" ], "x-ms-correlation-request-id": [ - "161adf83-c266-44c6-8d49-77c480219fc2" + "9d982bcf-a662-42e5-9c56-066b3a562dd8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224617Z:161adf83-c266-44c6-8d49-77c480219fc2" + "WESTUS:20201027T023325Z:9d982bcf-a662-42e5-9c56-066b3a562dd8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:17 GMT" + "Tue, 27 Oct 2020 02:33:24 GMT" ], "Content-Length": [ "1395" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint6535\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6535.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/path/valid\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1290\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1290.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/path/valid\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"\\\\&123invalid_path/.\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isHttpAllowed\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6510d5a1-4bad-442a-bd1b-c1e806e659d4" + "c13f1067-93a9-4521-887d-2171373c3888" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -687,10 +687,10 @@ "no-cache" ], "x-ms-request-id": [ - "46abe81f-db22-4f94-92ec-9ebb1ebee6ce" + "f37a6cb6-99c2-46e3-9f9d-a61f3134162a" ], "x-ms-client-request-id": [ - "6510d5a1-4bad-442a-bd1b-c1e806e659d4" + "c13f1067-93a9-4521-887d-2171373c3888" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,16 +708,16 @@ "98" ], "x-ms-correlation-request-id": [ - "3338218a-94e4-45fc-9ea2-3eafe17f3da0" + "bef20afd-b45e-4c1d-9b83-efc0021f05f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224558Z:3338218a-94e4-45fc-9ea2-3eafe17f3da0" + "WESTUS:20201027T023304Z:bef20afd-b45e-4c1d-9b83-efc0021f05f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:57 GMT" + "Tue, 27 Oct 2020 02:33:04 GMT" ], "Content-Length": [ "141" @@ -736,22 +736,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/path/valid\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": false,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "19970d0e-0802-4bab-9b6d-06aeed7003e8" + "0377fb16-61a0-447c-843f-34ad211da230" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -768,10 +768,10 @@ "no-cache" ], "x-ms-request-id": [ - "50611c65-a241-436d-936e-59b0129324c6" + "dbf2b59d-df91-4f92-92b4-ad456eea013a" ], "x-ms-client-request-id": [ - "19970d0e-0802-4bab-9b6d-06aeed7003e8" + "0377fb16-61a0-447c-843f-34ad211da230" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -789,16 +789,16 @@ "97" ], "x-ms-correlation-request-id": [ - "9737eb7d-1293-4520-aa2d-cda0e57ef8b2" + "ed34d1c6-a144-42f2-99bd-87f48df891a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224559Z:9737eb7d-1293-4520-aa2d-cda0e57ef8b2" + "WESTUS:20201027T023306Z:ed34d1c6-a144-42f2-99bd-87f48df891a2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:45:58 GMT" + "Tue, 27 Oct 2020 02:33:05 GMT" ], "Content-Length": [ "138" @@ -817,22 +817,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/path/valid\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": false,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": []\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9aab9eef-b3c5-43cd-a42e-a07a36da6030" + "6216ea94-2a77-4841-83e8-03b51b6a81c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -849,10 +849,10 @@ "no-cache" ], "x-ms-request-id": [ - "947a96be-e08e-4b78-9c2f-f65d91eae8f5" + "aaa00a7c-c0e7-45a6-9497-f5745872f244" ], "x-ms-client-request-id": [ - "9aab9eef-b3c5-43cd-a42e-a07a36da6030" + "6216ea94-2a77-4841-83e8-03b51b6a81c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -870,16 +870,16 @@ "96" ], "x-ms-correlation-request-id": [ - "8208754b-f2c6-4e4d-8a05-c1e0cc9b3056" + "07921227-d777-4ada-9d37-3d60a0c8e90a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224601Z:8208754b-f2c6-4e4d-8a05-c1e0cc9b3056" + "WESTUS:20201027T023307Z:07921227-d777-4ada-9d37-3d60a0c8e90a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:00 GMT" + "Tue, 27 Oct 2020 02:33:07 GMT" ], "Content-Length": [ "196" @@ -898,22 +898,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"deliveryPolicy\": {\r\n \"description\": \"Test description for a policy.\",\r\n \"rules\": [\r\n {\r\n \"order\": 1,\r\n \"conditions\": [\r\n {\r\n \"name\": \"UrlPath\",\r\n \"parameters\": {\r\n \"operator\": \"Equal\",\r\n \"matchValues\": [\r\n \"abc\"\r\n ],\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleUrlPathMatchConditionParameters\"\r\n }\r\n }\r\n ],\r\n \"actions\": [\r\n {\r\n \"name\": \"CacheExpiration\",\r\n \"parameters\": {\r\n \"cacheBehavior\": \"BypassCache\",\r\n \"cacheDuration\": \"10:10:09\",\r\n \"@odata.type\": \"#Microsoft.Azure.Cdn.Models.DeliveryRuleCacheExpirationActionParameters\",\r\n \"cacheType\": \"All\"\r\n }\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ef87a230-ecb0-40ce-bbba-143d51f34190" + "29725be1-9020-4dc6-a71c-dced46c9706c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -930,10 +930,10 @@ "no-cache" ], "x-ms-request-id": [ - "0fcf2b49-a541-400f-acef-d3948669226d" + "72b27c94-5374-44b8-9b9a-f29b13fe7f1f" ], "x-ms-client-request-id": [ - "ef87a230-ecb0-40ce-bbba-143d51f34190" + "29725be1-9020-4dc6-a71c-dced46c9706c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -951,16 +951,16 @@ "95" ], "x-ms-correlation-request-id": [ - "dbfffef3-b5bd-4a7d-93b5-801e443674ad" + "5e16bf20-a89c-4b02-a176-ab2c13d14af1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224602Z:dbfffef3-b5bd-4a7d-93b5-801e443674ad" + "WESTUS:20201027T023308Z:5e16bf20-a89c-4b02-a176-ab2c13d14af1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:01 GMT" + "Tue, 27 Oct 2020 02:33:08 GMT" ], "Content-Length": [ "125" @@ -979,22 +979,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/dsa-test\",\r\n \"contentTypesToCompress\": [],\r\n \"originHostHeader\": \"azurecdn-files.azureedge.net\",\r\n \"isCompressionEnabled\": false,\r\n \"isHttpAllowed\": false,\r\n \"queryStringCachingBehavior\": \"NotSet\",\r\n \"optimizationType\": \"DynamicSiteAcceleration\",\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": []\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "73985662-46f1-4adf-b61b-778547f292ea" + "ff36c9ab-2bd2-4f98-9a79-c2bf248b1b48" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1011,10 +1011,10 @@ "no-cache" ], "x-ms-request-id": [ - "c1f3cbd3-e58a-4f21-8309-34d5ff78e5a9" + "89c8688b-d2e7-49ff-86ae-b6ceeb4bf881" ], "x-ms-client-request-id": [ - "73985662-46f1-4adf-b61b-778547f292ea" + "ff36c9ab-2bd2-4f98-9a79-c2bf248b1b48" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1032,16 +1032,16 @@ "94" ], "x-ms-correlation-request-id": [ - "e8dc7ea2-10be-4f09-abc1-5a12dbc71394" + "ffc6d5a4-dab1-4052-8672-8f7760bfc600" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224603Z:e8dc7ea2-10be-4f09-abc1-5a12dbc71394" + "WESTUS:20201027T023310Z:ffc6d5a4-dab1-4052-8672-8f7760bfc600" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:02 GMT" + "Tue, 27 Oct 2020 02:33:09 GMT" ], "Content-Length": [ "123" @@ -1060,22 +1060,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDY1MzU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDEyOTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originPath\": \"/path/valid\",\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isCompressionEnabled\": true,\r\n \"isHttpAllowed\": false,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ]\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "85a3e154-6d89-4eb9-bd7f-593cc65cb711" + "96d24288-d893-470f-9d27-8ca20247604d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1092,19 +1092,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/2848f17d-c4c2-4412-ba92-c57fe15d0b75/profileresults/profile6525/endpointresults/endpoint6535?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/bd51b43f-7874-431e-afc9-9546ff01ffa4/profileresults/profile3963/endpointresults/endpoint1290?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "d3f0eb3b-fcf1-4be7-a021-48e2462e834d" + "1ff89493-5637-4260-a65b-6c924569f196" ], "x-ms-client-request-id": [ - "85a3e154-6d89-4eb9-bd7f-593cc65cb711" + "96d24288-d893-470f-9d27-8ca20247604d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/2848f17d-c4c2-4412-ba92-c57fe15d0b75?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/bd51b43f-7874-431e-afc9-9546ff01ffa4?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1125,16 +1125,16 @@ "93" ], "x-ms-correlation-request-id": [ - "ea499506-6e6d-4052-a0a5-0b6f370d5eb6" + "6f7f15f4-d000-4263-bbfd-d13f66427f5c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224606Z:ea499506-6e6d-4052-a0a5-0b6f370d5eb6" + "WESTUS:20201027T023313Z:6f7f15f4-d000-4263-bbfd-d13f66427f5c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:05 GMT" + "Tue, 27 Oct 2020 02:33:12 GMT" ], "Content-Length": [ "1395" @@ -1146,20 +1146,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint6535\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint6535\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6535.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/path/valid\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1290\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint1290\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1290.azureedge.net\",\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": \"/path/valid\",\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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\r\n \"customDomains\": [],\r\n \"contentTypesToCompress\": [\r\n \"text/html\",\r\n \"application/octet-stream\"\r\n ],\r\n \"isCompressionEnabled\": true,\r\n \"optimizationType\": null,\r\n \"probePath\": null,\r\n \"geoFilters\": [\r\n {\r\n \"relativePath\": \"/mycar\",\r\n \"action\": \"Allow\",\r\n \"countryCodes\": [\r\n \"AU\"\r\n ]\r\n }\r\n ],\r\n \"deliveryPolicy\": null,\r\n \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/2848f17d-c4c2-4412-ba92-c57fe15d0b75?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjg0OGYxN2QtYzRjMi00NDEyLWJhOTItYzU3ZmUxNWQwYjc1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/bd51b43f-7874-431e-afc9-9546ff01ffa4?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmQ1MWI0M2YtNzg3NC00MzFlLWFmYzktOTU0NmZmMDFmZmE0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1170,10 +1170,10 @@ "no-cache" ], "x-ms-request-id": [ - "8acedb4c-46cc-438c-a9d2-c7bbf0c7da1d" + "10a65998-c6d8-4757-9b9d-7deb65221ab7" ], "x-ms-client-request-id": [ - "6e92aa47-9f99-47bc-a19e-c16fb28282c8" + "ef5b5237-d7e4-42f2-b572-ea10462858c8" ], "OData-Version": [ "4.0" @@ -1194,16 +1194,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "f7a53dde-905d-4b3f-a661-0c83c4b13aa4" + "6e72a7c6-bb8d-41e3-bd34-33c94e796c12" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224616Z:f7a53dde-905d-4b3f-a661-0c83c4b13aa4" + "WESTUS:20201027T023323Z:6e72a7c6-bb8d-41e3-bd34-33c94e796c12" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:16 GMT" + "Tue, 27 Oct 2020 02:33:23 GMT" ], "Content-Length": [ "77" @@ -1219,22 +1219,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint7172?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDcxNzI/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint2499?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDI0OTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "49eece3c-b26e-4ce2-a469-7114610d3466" + "8aece294-5a15-4ffe-92d8-ea9ba42e72b1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1254,13 +1254,13 @@ "10" ], "x-ms-request-id": [ - "12542c9a-f38f-48c4-9fbb-149c7058e133" + "77e6e8e4-8cd3-4508-abea-f726a28970eb" ], "x-ms-client-request-id": [ - "49eece3c-b26e-4ce2-a469-7114610d3466" + "8aece294-5a15-4ffe-92d8-ea9ba42e72b1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/operationresults/5ba49c7b-d17e-4fa4-a012-edfca9bf0e6f?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/operationresults/4e978600-c41c-4471-89fa-ac25e3792e5a?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1281,16 +1281,16 @@ "92" ], "x-ms-correlation-request-id": [ - "4dffd686-f5b7-4c40-aa10-65030d889de8" + "ef13d590-f5e7-4157-b58f-9b70f9d66d6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224621Z:4dffd686-f5b7-4c40-aa10-65030d889de8" + "WESTUS:20201027T023330Z:ef13d590-f5e7-4157-b58f-9b70f9d66d6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:21 GMT" + "Tue, 27 Oct 2020 02:33:29 GMT" ], "Content-Length": [ "1234" @@ -1302,26 +1302,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint7172\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint7172\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint7172.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint2499\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint2499\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2499.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1000/providers/Microsoft.Cdn/profiles/profile6525/endpoints/endpoint7172?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2NTI1L2VuZHBvaW50cy9lbmRwb2ludDcxNzI/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup5910/providers/Microsoft.Cdn/profiles/profile3963/endpoints/endpoint2499?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTYzL2VuZHBvaW50cy9lbmRwb2ludDI0OTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"originHostHeader\": \"www.bing.com\",\r\n \"isHttpAllowed\": false\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3bef5317-81bb-4a3e-a090-25e804f38bf5" + "07eb8000-5a23-475b-81e9-84aef0450584" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1338,10 +1338,10 @@ "no-cache" ], "x-ms-request-id": [ - "dc958e6b-6996-43b7-a89e-f290a6869da7" + "4b88a5f4-edb5-467d-a49d-b2c027256023" ], "x-ms-client-request-id": [ - "3bef5317-81bb-4a3e-a090-25e804f38bf5" + "07eb8000-5a23-475b-81e9-84aef0450584" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1359,16 +1359,16 @@ "91" ], "x-ms-correlation-request-id": [ - "2e78e382-af1a-48f8-b8c1-164516f2ae55" + "7218f46d-7a4c-40d0-a0f4-88a9260d122a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224623Z:2e78e382-af1a-48f8-b8c1-164516f2ae55" + "WESTUS:20201027T023332Z:7218f46d-7a4c-40d0-a0f4-88a9260d122a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:22 GMT" + "Tue, 27 Oct 2020 02:33:31 GMT" ], "Content-Length": [ "160" @@ -1387,21 +1387,21 @@ "StatusCode": 409 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1000?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMDAwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5910?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA1OTEwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1844707f-fc38-41cb-880a-097c26942e4e" + "c360c2f2-be07-4db9-b5c6-27d448edc008" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1413,7 +1413,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1422,13 +1422,13 @@ "14999" ], "x-ms-request-id": [ - "efa856c6-1b7d-4823-9844-26592864057a" + "128c88b0-360e-41fe-9497-b834f39034a8" ], "x-ms-correlation-request-id": [ - "efa856c6-1b7d-4823-9844-26592864057a" + "128c88b0-360e-41fe-9497-b834f39034a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224623Z:efa856c6-1b7d-4823-9844-26592864057a" + "WESTUS:20201027T023332Z:128c88b0-360e-41fe-9497-b834f39034a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1437,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:22 GMT" + "Tue, 27 Oct 2020 02:33:31 GMT" ], "Expires": [ "-1" @@ -1450,15 +1450,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1470,7 +1470,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1479,13 +1479,13 @@ "11999" ], "x-ms-request-id": [ - "e437eb3c-00b9-4b85-ac81-7e39fe8c4041" + "52fcae37-25c0-4f6d-a97c-661df9b0cf62" ], "x-ms-correlation-request-id": [ - "e437eb3c-00b9-4b85-ac81-7e39fe8c4041" + "52fcae37-25c0-4f6d-a97c-661df9b0cf62" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224638Z:e437eb3c-00b9-4b85-ac81-7e39fe8c4041" + "WESTUS:20201027T023347Z:52fcae37-25c0-4f6d-a97c-661df9b0cf62" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,7 +1494,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:37 GMT" + "Tue, 27 Oct 2020 02:33:46 GMT" ], "Expires": [ "-1" @@ -1507,15 +1507,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1527,7 +1527,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1536,13 +1536,13 @@ "11998" ], "x-ms-request-id": [ - "4789f874-7b91-4ebd-b09f-7a9c7795a493" + "8bbc8f28-580d-40fa-a034-c6d1648576fc" ], "x-ms-correlation-request-id": [ - "4789f874-7b91-4ebd-b09f-7a9c7795a493" + "8bbc8f28-580d-40fa-a034-c6d1648576fc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224653Z:4789f874-7b91-4ebd-b09f-7a9c7795a493" + "WESTUS:20201027T023402Z:8bbc8f28-580d-40fa-a034-c6d1648576fc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1551,7 +1551,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:46:52 GMT" + "Tue, 27 Oct 2020 02:34:01 GMT" ], "Expires": [ "-1" @@ -1564,15 +1564,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1584,7 +1584,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1593,13 +1593,13 @@ "11997" ], "x-ms-request-id": [ - "77027cb2-0fc3-43c4-8187-b45ae800b18e" + "f216bb5c-0ccf-490f-b3c7-1730382ed9f2" ], "x-ms-correlation-request-id": [ - "77027cb2-0fc3-43c4-8187-b45ae800b18e" + "f216bb5c-0ccf-490f-b3c7-1730382ed9f2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224708Z:77027cb2-0fc3-43c4-8187-b45ae800b18e" + "WESTUS:20201027T023417Z:f216bb5c-0ccf-490f-b3c7-1730382ed9f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1608,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:47:08 GMT" + "Tue, 27 Oct 2020 02:34:17 GMT" ], "Expires": [ "-1" @@ -1621,15 +1621,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1641,7 +1641,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1650,13 +1650,13 @@ "11996" ], "x-ms-request-id": [ - "d7956bb3-ef4c-4c09-adb6-6d56ab4e6691" + "57b3ccb4-6a12-49fc-b877-0b94cffd7641" ], "x-ms-correlation-request-id": [ - "d7956bb3-ef4c-4c09-adb6-6d56ab4e6691" + "57b3ccb4-6a12-49fc-b877-0b94cffd7641" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224723Z:d7956bb3-ef4c-4c09-adb6-6d56ab4e6691" + "WESTUS:20201027T023432Z:57b3ccb4-6a12-49fc-b877-0b94cffd7641" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1665,7 +1665,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:47:23 GMT" + "Tue, 27 Oct 2020 02:34:32 GMT" ], "Expires": [ "-1" @@ -1678,15 +1678,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1698,7 +1698,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1707,13 +1707,13 @@ "11995" ], "x-ms-request-id": [ - "8c23226f-20f7-4ec0-98a6-a8b7d95cf7b2" + "5f826c62-48d7-4f1f-ae3e-ae11140c826a" ], "x-ms-correlation-request-id": [ - "8c23226f-20f7-4ec0-98a6-a8b7d95cf7b2" + "5f826c62-48d7-4f1f-ae3e-ae11140c826a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224738Z:8c23226f-20f7-4ec0-98a6-a8b7d95cf7b2" + "WESTUS:20201027T023447Z:5f826c62-48d7-4f1f-ae3e-ae11140c826a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1722,7 +1722,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:47:38 GMT" + "Tue, 27 Oct 2020 02:34:47 GMT" ], "Expires": [ "-1" @@ -1735,15 +1735,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1755,7 +1755,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1764,13 +1764,13 @@ "11994" ], "x-ms-request-id": [ - "24371034-5367-4e90-aceb-0b478908e0c9" + "038e9d15-b56d-4438-8bde-e20115d9a79f" ], "x-ms-correlation-request-id": [ - "24371034-5367-4e90-aceb-0b478908e0c9" + "038e9d15-b56d-4438-8bde-e20115d9a79f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224754Z:24371034-5367-4e90-aceb-0b478908e0c9" + "WESTUS:20201027T023502Z:038e9d15-b56d-4438-8bde-e20115d9a79f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1779,7 +1779,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:47:53 GMT" + "Tue, 27 Oct 2020 02:35:02 GMT" ], "Expires": [ "-1" @@ -1792,15 +1792,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1812,7 +1812,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1821,13 +1821,13 @@ "11993" ], "x-ms-request-id": [ - "3a72fdfe-40b1-4d76-a38c-b5c9b90d785c" + "5ec0376b-175f-4005-bba7-66d49ce36d3a" ], "x-ms-correlation-request-id": [ - "3a72fdfe-40b1-4d76-a38c-b5c9b90d785c" + "5ec0376b-175f-4005-bba7-66d49ce36d3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224809Z:3a72fdfe-40b1-4d76-a38c-b5c9b90d785c" + "WESTUS:20201027T023517Z:5ec0376b-175f-4005-bba7-66d49ce36d3a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1836,7 +1836,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:48:08 GMT" + "Tue, 27 Oct 2020 02:35:17 GMT" ], "Expires": [ "-1" @@ -1849,15 +1849,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1869,7 +1869,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1878,13 +1878,13 @@ "11992" ], "x-ms-request-id": [ - "416583a8-8fb0-4e7e-ac96-31dc334c0119" + "97ad3da9-189b-48cf-8ea8-3293f29ae4a1" ], "x-ms-correlation-request-id": [ - "416583a8-8fb0-4e7e-ac96-31dc334c0119" + "97ad3da9-189b-48cf-8ea8-3293f29ae4a1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224824Z:416583a8-8fb0-4e7e-ac96-31dc334c0119" + "WESTUS:20201027T023532Z:97ad3da9-189b-48cf-8ea8-3293f29ae4a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1893,7 +1893,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:48:23 GMT" + "Tue, 27 Oct 2020 02:35:32 GMT" ], "Expires": [ "-1" @@ -1906,15 +1906,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1926,7 +1926,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1935,13 +1935,13 @@ "11991" ], "x-ms-request-id": [ - "66a02d94-d53a-4074-bb91-b015f8166a94" + "82dae5f7-30bb-426e-942a-a4391e2f24e5" ], "x-ms-correlation-request-id": [ - "66a02d94-d53a-4074-bb91-b015f8166a94" + "82dae5f7-30bb-426e-942a-a4391e2f24e5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224839Z:66a02d94-d53a-4074-bb91-b015f8166a94" + "WESTUS:20201027T023547Z:82dae5f7-30bb-426e-942a-a4391e2f24e5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1950,7 +1950,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:48:38 GMT" + "Tue, 27 Oct 2020 02:35:47 GMT" ], "Expires": [ "-1" @@ -1963,15 +1963,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1983,7 +1983,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1992,13 +1992,13 @@ "11990" ], "x-ms-request-id": [ - "f7df970a-3808-4bd0-a794-e4f36999fcc0" + "92248ce2-7bc2-4270-aa73-f24fc3e1f5cb" ], "x-ms-correlation-request-id": [ - "f7df970a-3808-4bd0-a794-e4f36999fcc0" + "92248ce2-7bc2-4270-aa73-f24fc3e1f5cb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224854Z:f7df970a-3808-4bd0-a794-e4f36999fcc0" + "WESTUS:20201027T023603Z:92248ce2-7bc2-4270-aa73-f24fc3e1f5cb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2007,7 +2007,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:48:53 GMT" + "Tue, 27 Oct 2020 02:36:02 GMT" ], "Expires": [ "-1" @@ -2020,15 +2020,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2043,13 +2043,13 @@ "11989" ], "x-ms-request-id": [ - "c42bf75b-305d-45a3-81c1-c5a51fc0aea7" + "a18db9b1-1732-413a-8bb3-60cd8f8a5c36" ], "x-ms-correlation-request-id": [ - "c42bf75b-305d-45a3-81c1-c5a51fc0aea7" + "a18db9b1-1732-413a-8bb3-60cd8f8a5c36" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224909Z:c42bf75b-305d-45a3-81c1-c5a51fc0aea7" + "WESTUS:20201027T023618Z:a18db9b1-1732-413a-8bb3-60cd8f8a5c36" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2058,7 +2058,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:08 GMT" + "Tue, 27 Oct 2020 02:36:18 GMT" ], "Expires": [ "-1" @@ -2071,15 +2071,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTAwMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEF3TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNTkxMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOVGt4TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2094,13 +2094,13 @@ "11988" ], "x-ms-request-id": [ - "5d81ff0c-26b3-4c4b-96cd-b892874047d6" + "e9a5a8bb-b57e-4284-8f58-326b3268f0df" ], "x-ms-correlation-request-id": [ - "5d81ff0c-26b3-4c4b-96cd-b892874047d6" + "e9a5a8bb-b57e-4284-8f58-326b3268f0df" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224909Z:5d81ff0c-26b3-4c4b-96cd-b892874047d6" + "WESTUS:20201027T023618Z:e9a5a8bb-b57e-4284-8f58-326b3268f0df" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2109,7 +2109,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:08 GMT" + "Tue, 27 Oct 2020 02:36:18 GMT" ], "Expires": [ "-1" @@ -2124,12 +2124,12 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup1000" + "cdnResourceGroup5910" ], "EndpointUpdateTest": [ - "profile6525", - "endpoint6535", - "endpoint7172" + "profile3963", + "endpoint1290", + "endpoint2499" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/ValidateCustomDomainTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/ValidateCustomDomainTest.json index c9e3d49948c44..c66ad369c942d 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/ValidateCustomDomainTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/EndpointTests/ValidateCustomDomainTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7de4bb36-c88b-476f-afdf-5debddf155a6" + "8c0d7998-d3fc-479d-a089-c46ff44c38ef" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "ea73ee47-0907-470c-b8fe-648f41283b7f" + "53cbbee7-a6b0-4cd7-80b0-a4aed49a7992" ], "x-ms-correlation-request-id": [ - "ea73ee47-0907-470c-b8fe-648f41283b7f" + "53cbbee7-a6b0-4cd7-80b0-a4aed49a7992" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215617Z:ea73ee47-0907-470c-b8fe-648f41283b7f" + "WESTUS:20201027T015758Z:53cbbee7-a6b0-4cd7-80b0-a4aed49a7992" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:16 GMT" + "Tue, 27 Oct 2020 01:57:57 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539\",\r\n \"name\": \"cdnResourceGroup6539\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752\",\r\n \"name\": \"cdnResourceGroup9752\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "89a892b2-f9f0-4b97-85cf-929816efaf59" + "bae1bcbf-b1d2-4ffd-a4c7-cf80b567eb2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "c18157c9-e852-4457-9c4b-d6c654942555" + "6699b4d4-6b38-4429-8f73-ff28e666d154" ], "x-ms-client-request-id": [ - "89a892b2-f9f0-4b97-85cf-929816efaf59" + "bae1bcbf-b1d2-4ffd-a4c7-cf80b567eb2f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/e670b18c-db86-4e0c-98c5-959a5559661b?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/6283117a-c5f6-4f2f-ad92-3d7c8fbf1bbd?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,19 +129,19 @@ "24" ], "x-ms-correlation-request-id": [ - "d4ef1df2-cb58-4736-862a-064c7a51215c" + "6a1812d7-8e7f-4d4f-85de-3e7a7678983e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215623Z:d4ef1df2-cb58-4736-862a-064c7a51215c" + "WESTUS:20201027T015802Z:6a1812d7-8e7f-4d4f-85de-3e7a7678983e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:23 GMT" + "Tue, 27 Oct 2020 01:58:01 GMT" ], "Content-Length": [ - "396" + "398" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile5948\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/e670b18c-db86-4e0c-98c5-959a5559661b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTY3MGIxOGMtZGI4Ni00ZTBjLTk4YzUtOTU5YTU1NTk2NjFiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/6283117a-c5f6-4f2f-ad92-3d7c8fbf1bbd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjI4MzExN2EtYzVmNi00ZjJmLWFkOTItM2Q3YzhmYmYxYmJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "a8820bc7-81ef-4380-b8c6-ee0ab09f9801" + "7338725c-ae9d-4109-8b07-dfc96225e5fb" ], "x-ms-client-request-id": [ - "ea07c540-668f-47a7-92e1-d973598b6996" + "15eef094-01f4-4a37-8200-a2f702e8e678" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "711e1989-b11c-4b64-81ed-d13d28e3cf88" + "89a4503f-9300-45b2-be58-e57e93971f57" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215634Z:711e1989-b11c-4b64-81ed-d13d28e3cf88" + "WESTUS:20201027T015812Z:89a4503f-9300-45b2-be58-e57e93971f57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:33 GMT" + "Tue, 27 Oct 2020 01:58:12 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/e670b18c-db86-4e0c-98c5-959a5559661b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTY3MGIxOGMtZGI4Ni00ZTBjLTk4YzUtOTU5YTU1NTk2NjFiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/6283117a-c5f6-4f2f-ad92-3d7c8fbf1bbd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjI4MzExN2EtYzVmNi00ZjJmLWFkOTItM2Q3YzhmYmYxYmJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "6247facc-91ac-479e-b493-61034e8c964b" + "92dd9b16-3158-4764-9da3-9c0ca276d836" ], "x-ms-client-request-id": [ - "50c52ead-6402-46f6-a4fc-4964e768a97d" + "97d4e8b6-3228-4713-a876-e3528756c50e" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "cfab615a-5504-4488-9bd4-db1eaec5088f" + "23161074-94af-4b31-8dae-e779e0463273" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215644Z:cfab615a-5504-4488-9bd4-db1eaec5088f" + "WESTUS:20201027T015822Z:23161074-94af-4b31-8dae-e779e0463273" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:43 GMT" + "Tue, 27 Oct 2020 01:58:22 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/e670b18c-db86-4e0c-98c5-959a5559661b?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTY3MGIxOGMtZGI4Ni00ZTBjLTk4YzUtOTU5YTU1NTk2NjFiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/6283117a-c5f6-4f2f-ad92-3d7c8fbf1bbd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjI4MzExN2EtYzVmNi00ZjJmLWFkOTItM2Q3YzhmYmYxYmJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "47de0ff7-601c-4e12-858a-a76fb9d3f5d4" + "63330cd3-b2c2-4ef7-827c-6196bb80f2b7" ], "x-ms-client-request-id": [ - "0fece188-f67c-4a22-9872-256b53786332" + "641c48df-f772-40c5-878d-431572f22b54" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "b4a8584f-bb80-42c2-abc3-0c7706d169a8" + "f58bea78-a599-44f5-88b8-e2212fdfdda2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215654Z:b4a8584f-bb80-42c2-abc3-0c7706d169a8" + "WESTUS:20201027T015833Z:f58bea78-a599-44f5-88b8-e2212fdfdda2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:54 GMT" + "Tue, 27 Oct 2020 01:58:32 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "7ce2e8fb-ced6-444d-9144-37c5fc73b8d2" + "532531fc-8c5c-4f32-8086-1483faa623d1" ], "x-ms-client-request-id": [ - "9ebdb17e-c281-428f-8f45-28522051b974" + "aa7730f0-74e5-4a07-b986-806fff26b467" ], "OData-Version": [ "4.0" @@ -405,19 +405,19 @@ "49" ], "x-ms-correlation-request-id": [ - "4393283f-319b-4061-86a1-5cad9530a8c8" + "ab811e6f-feff-42a2-bcf6-1741d19fd666" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215655Z:4393283f-319b-4061-86a1-5cad9530a8c8" + "WESTUS:20201027T015834Z:ab811e6f-feff-42a2-bcf6-1741d19fd666" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:55 GMT" + "Tue, 27 Oct 2020 01:58:33 GMT" ], "Content-Length": [ - "395" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile5948\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTgvZW5kcG9pbnRzL2VuZHBvaW50LThlMDJkZWZmZWQzYz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4L2VuZHBvaW50cy9lbmRwb2ludC04ZTAyZGVmZmVkM2M/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "bfb22c40-06cc-428c-808c-07b31df2b35f" + "eafb667b-68c8-44b1-8764-3e3668a02334" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +465,13 @@ "10" ], "x-ms-request-id": [ - "485b4534-4252-4857-815d-40ee584420f0" + "561f652a-08d0-4412-89cc-f22925c1fc0b" ], "x-ms-client-request-id": [ - "bfb22c40-06cc-428c-808c-07b31df2b35f" + "eafb667b-68c8-44b1-8764-3e3668a02334" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/c3fd2816-2af4-4b10-9c93-6be44ec4d712?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/a274d4a2-0ccd-4b42-984a-ef5ded2f9adb?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -492,19 +492,19 @@ "99" ], "x-ms-correlation-request-id": [ - "4608430d-f5e9-42e1-92ca-2f4a61e10941" + "4ed02c3d-7d31-4544-90fb-2a0178cadd96" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215659Z:4608430d-f5e9-42e1-92ca-2f4a61e10941" + "WESTUS:20201027T015838Z:4ed02c3d-7d31-4544-90fb-2a0178cadd96" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:56:59 GMT" + "Tue, 27 Oct 2020 01:58:37 GMT" ], "Content-Length": [ - "1260" + "1261" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -513,20 +513,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-8e02deffed3c\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-8e02deffed3c.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-8e02deffed3c\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-8e02deffed3c.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/c3fd2816-2af4-4b10-9c93-6be44ec4d712?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzNmZDI4MTYtMmFmNC00YjEwLTljOTMtNmJlNDRlYzRkNzEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/a274d4a2-0ccd-4b42-984a-ef5ded2f9adb?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTI3NGQ0YTItMGNjZC00YjQyLTk4NGEtZWY1ZGVkMmY5YWRiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "78c00903-096f-4429-8bfd-6d15424efacb" + "79257b2d-d8d1-4489-96c0-13ad9e679ab2" ], "x-ms-client-request-id": [ - "36c5abbb-5ee1-4218-ad1f-3144deb4465e" + "d1216cba-47d3-4db3-be6f-b71aa6fde2ab" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "b635cfe4-40a6-43a8-8c60-c5cf94ed2dbd" + "a247fb47-1bf9-47fc-a185-9f711a977560" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215710Z:b635cfe4-40a6-43a8-8c60-c5cf94ed2dbd" + "WESTUS:20201027T015848Z:a247fb47-1bf9-47fc-a185-9f711a977560" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:09 GMT" + "Tue, 27 Oct 2020 01:58:48 GMT" ], "Content-Length": [ "78" @@ -586,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/operationresults/c3fd2816-2af4-4b10-9c93-6be44ec4d712?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzNmZDI4MTYtMmFmNC00YjEwLTljOTMtNmJlNDRlYzRkNzEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/operationresults/a274d4a2-0ccd-4b42-984a-ef5ded2f9adb?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTI3NGQ0YTItMGNjZC00YjQyLTk4NGEtZWY1ZGVkMmY5YWRiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "afbbb251-44d5-4a72-9f49-b3f65af3114e" + "3bc7c39c-a8f2-417c-9cf7-f85dd563914e" ], "x-ms-client-request-id": [ - "e8588a23-092e-40c7-b9f4-3c86a7c29094" + "a92f1410-3c4c-4d51-98cf-dbd40d6334af" ], "OData-Version": [ "4.0" @@ -630,16 +630,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "21e72b7f-abab-45c0-b507-98a7cfb7789a" + "3c469c31-e3a4-4af3-9e39-3945a37f5c34" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215720Z:21e72b7f-abab-45c0-b507-98a7cfb7789a" + "WESTUS:20201027T015859Z:3c469c31-e3a4-4af3-9e39-3945a37f5c34" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:19 GMT" + "Tue, 27 Oct 2020 01:58:58 GMT" ], "Content-Length": [ "77" @@ -655,16 +655,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTgvZW5kcG9pbnRzL2VuZHBvaW50LThlMDJkZWZmZWQzYz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4L2VuZHBvaW50cy9lbmRwb2ludC04ZTAyZGVmZmVkM2M/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +675,10 @@ "no-cache" ], "x-ms-request-id": [ - "89632c9a-9c61-4b40-b985-ca8fa7f9086a" + "a567284e-13a2-419a-a78d-d1a202e7d47c" ], "x-ms-client-request-id": [ - "9c86f80e-c220-49fd-b2b2-86f715163fc2" + "07195417-b81a-4052-aecc-8c8e636788d4" ], "OData-Version": [ "4.0" @@ -699,19 +699,19 @@ "49" ], "x-ms-correlation-request-id": [ - "b3b9b0ac-c7b9-4ba3-9df0-fd921a17fff7" + "e260ff48-2012-40f5-a506-054e14452342" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215721Z:b3b9b0ac-c7b9-4ba3-9df0-fd921a17fff7" + "WESTUS:20201027T015900Z:e260ff48-2012-40f5-a506-054e14452342" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:20 GMT" + "Tue, 27 Oct 2020 01:58:59 GMT" ], "Content-Length": [ - "1260" + "1261" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -720,26 +720,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-8e02deffed3c\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-8e02deffed3c.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-8e02deffed3c\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-8e02deffed3c.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTgvZW5kcG9pbnRzL2VuZHBvaW50LThlMDJkZWZmZWQzYy92YWxpZGF0ZUN1c3RvbURvbWFpbj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4L2VuZHBvaW50cy9lbmRwb2ludC04ZTAyZGVmZmVkM2MvdmFsaWRhdGVDdXN0b21Eb21haW4/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"hostName\": \"customdomain34.azureedge-test.net\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e0ec882c-38db-4b7f-a34c-fac62232c00d" + "dc7dfb33-65ae-42d3-8eeb-00d5291a1343" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -756,10 +756,10 @@ "no-cache" ], "x-ms-request-id": [ - "92fdfb09-10f2-4c9e-8c5b-3fbc696a4d13" + "2c09c55b-5a30-414a-91dd-c93d2ffd15c4" ], "x-ms-client-request-id": [ - "e0ec882c-38db-4b7f-a34c-fac62232c00d" + "dc7dfb33-65ae-42d3-8eeb-00d5291a1343" ], "OData-Version": [ "4.0" @@ -780,16 +780,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "605ed571-8957-40ba-9eb2-0a96c6aa53d2" + "6e669847-09f4-469a-bf71-191fd612fcf3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215722Z:605ed571-8957-40ba-9eb2-0a96c6aa53d2" + "WESTUS:20201027T015901Z:6e669847-09f4-469a-bf71-191fd612fcf3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:22 GMT" + "Tue, 27 Oct 2020 01:59:00 GMT" ], "Content-Length": [ "65" @@ -805,22 +805,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTgvZW5kcG9pbnRzL2VuZHBvaW50LThlMDJkZWZmZWQzYy92YWxpZGF0ZUN1c3RvbURvbWFpbj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4L2VuZHBvaW50cy9lbmRwb2ludC04ZTAyZGVmZmVkM2MvdmFsaWRhdGVDdXN0b21Eb21haW4/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"hostName\": \"customdomain4.hello.com\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "66021257-66b9-491e-98d7-42feabd40c30" + "5e14243a-bd8b-4aae-a2e4-8459ed882344" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -837,10 +837,10 @@ "no-cache" ], "x-ms-request-id": [ - "3bfa99eb-9c57-4f22-bbe0-c8672e90904c" + "41eec1a8-6035-4ddc-be42-36aca98521a8" ], "x-ms-client-request-id": [ - "66021257-66b9-491e-98d7-42feabd40c30" + "5e14243a-bd8b-4aae-a2e4-8459ed882344" ], "OData-Version": [ "4.0" @@ -861,16 +861,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "3cbaa236-9973-49df-9820-8fd503f00609" + "5034b759-369d-45a3-ad97-e0aabfdac56b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215724Z:3cbaa236-9973-49df-9820-8fd503f00609" + "WESTUS:20201027T015902Z:5034b759-369d-45a3-ad97-e0aabfdac56b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:23 GMT" + "Tue, 27 Oct 2020 01:59:02 GMT" ], "Content-Length": [ "272" @@ -886,22 +886,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6539/providers/Microsoft.Cdn/profiles/profile218/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMTgvZW5kcG9pbnRzL2VuZHBvaW50LThlMDJkZWZmZWQzYy92YWxpZGF0ZUN1c3RvbURvbWFpbj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9752/providers/Microsoft.Cdn/profiles/profile5948/endpoints/endpoint-8e02deffed3c/validateCustomDomain?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1OTQ4L2VuZHBvaW50cy9lbmRwb2ludC04ZTAyZGVmZmVkM2MvdmFsaWRhdGVDdXN0b21Eb21haW4/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "POST", "RequestBody": "{\r\n \"hostName\": \"invalid\\\\custom/domain\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "8476f65b-1a4b-4261-9eea-71167b3d8042" + "93abd472-ab2d-4eda-97e1-47be6630997b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -918,10 +918,10 @@ "no-cache" ], "x-ms-request-id": [ - "da1a10b6-c293-4732-b5e9-0148e06ace7a" + "5c8c605b-9b79-43f6-96cc-dfbd6f947728" ], "x-ms-client-request-id": [ - "8476f65b-1a4b-4261-9eea-71167b3d8042" + "93abd472-ab2d-4eda-97e1-47be6630997b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -939,16 +939,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "ba9b4661-cd9a-4393-8985-cf2cceb4000c" + "ab6df595-be01-4d0c-b27a-ef52fae91160" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215725Z:ba9b4661-cd9a-4393-8985-cf2cceb4000c" + "WESTUS:20201027T015903Z:ab6df595-be01-4d0c-b27a-ef52fae91160" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:24 GMT" + "Tue, 27 Oct 2020 01:59:02 GMT" ], "Content-Length": [ "179" @@ -967,21 +967,21 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6539?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NTM5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9752?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NzUyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf93b911-de75-463e-9c4c-ac32c44bcda6" + "3c7d4876-97cd-44d3-8bd3-d30d30a3018e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -993,7 +993,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1002,13 +1002,13 @@ "14999" ], "x-ms-request-id": [ - "f72f4093-ed6b-4172-95be-ea26f065b847" + "58e1f36f-693c-431d-80e4-3988bbf42603" ], "x-ms-correlation-request-id": [ - "f72f4093-ed6b-4172-95be-ea26f065b847" + "58e1f36f-693c-431d-80e4-3988bbf42603" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215725Z:f72f4093-ed6b-4172-95be-ea26f065b847" + "WESTUS:20201027T015903Z:58e1f36f-693c-431d-80e4-3988bbf42603" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1017,7 +1017,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:24 GMT" + "Tue, 27 Oct 2020 01:59:03 GMT" ], "Expires": [ "-1" @@ -1030,15 +1030,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1050,22 +1050,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "a53156dd-2998-4694-bbab-3bc0b83ae064" + "4726c027-da4d-4ef9-abba-43b2ddf57120" ], "x-ms-correlation-request-id": [ - "a53156dd-2998-4694-bbab-3bc0b83ae064" + "4726c027-da4d-4ef9-abba-43b2ddf57120" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215740Z:a53156dd-2998-4694-bbab-3bc0b83ae064" + "WESTUS:20201027T015918Z:4726c027-da4d-4ef9-abba-43b2ddf57120" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,7 +1074,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:39 GMT" + "Tue, 27 Oct 2020 01:59:17 GMT" ], "Expires": [ "-1" @@ -1087,15 +1087,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1107,22 +1107,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "82c66f31-a05a-434f-aa92-6858b7e09f96" + "6b3dac82-31a8-4079-984b-eeaabd9e32ec" ], "x-ms-correlation-request-id": [ - "82c66f31-a05a-434f-aa92-6858b7e09f96" + "6b3dac82-31a8-4079-984b-eeaabd9e32ec" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215755Z:82c66f31-a05a-434f-aa92-6858b7e09f96" + "WESTUS:20201027T015933Z:6b3dac82-31a8-4079-984b-eeaabd9e32ec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1131,7 +1131,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:57:54 GMT" + "Tue, 27 Oct 2020 01:59:33 GMT" ], "Expires": [ "-1" @@ -1144,15 +1144,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1164,22 +1164,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "aadd6f5e-b6f2-43b3-933c-b3b2761993ce" + "f60e0017-5e7e-4d31-9ba9-f9a0d1a8834a" ], "x-ms-correlation-request-id": [ - "aadd6f5e-b6f2-43b3-933c-b3b2761993ce" + "f60e0017-5e7e-4d31-9ba9-f9a0d1a8834a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215810Z:aadd6f5e-b6f2-43b3-933c-b3b2761993ce" + "WESTUS:20201027T015948Z:f60e0017-5e7e-4d31-9ba9-f9a0d1a8834a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1188,7 +1188,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:58:09 GMT" + "Tue, 27 Oct 2020 01:59:48 GMT" ], "Expires": [ "-1" @@ -1201,15 +1201,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1221,22 +1221,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "771b9e66-427e-4ca3-be6d-803c3d0bcd87" + "0e8829fd-b586-4be6-9c61-216df1823b3b" ], "x-ms-correlation-request-id": [ - "771b9e66-427e-4ca3-be6d-803c3d0bcd87" + "0e8829fd-b586-4be6-9c61-216df1823b3b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215825Z:771b9e66-427e-4ca3-be6d-803c3d0bcd87" + "WESTUS:20201027T020004Z:0e8829fd-b586-4be6-9c61-216df1823b3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1245,7 +1245,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:58:25 GMT" + "Tue, 27 Oct 2020 02:00:03 GMT" ], "Expires": [ "-1" @@ -1258,15 +1258,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1278,22 +1278,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "18ea3e0f-dd73-4c9b-9ea4-1b56b58b81e6" + "26bbf1e0-1a7b-4d62-b90e-0f6277ee0e80" ], "x-ms-correlation-request-id": [ - "18ea3e0f-dd73-4c9b-9ea4-1b56b58b81e6" + "26bbf1e0-1a7b-4d62-b90e-0f6277ee0e80" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215840Z:18ea3e0f-dd73-4c9b-9ea4-1b56b58b81e6" + "WESTUS:20201027T020019Z:26bbf1e0-1a7b-4d62-b90e-0f6277ee0e80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1302,7 +1302,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:58:40 GMT" + "Tue, 27 Oct 2020 02:00:18 GMT" ], "Expires": [ "-1" @@ -1315,15 +1315,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1335,22 +1335,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "75a3433f-7c35-44d8-945e-fe16d402d69e" + "5b3004b7-5995-4f09-b67e-b3e4d80774e8" ], "x-ms-correlation-request-id": [ - "75a3433f-7c35-44d8-945e-fe16d402d69e" + "5b3004b7-5995-4f09-b67e-b3e4d80774e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215855Z:75a3433f-7c35-44d8-945e-fe16d402d69e" + "WESTUS:20201027T020034Z:5b3004b7-5995-4f09-b67e-b3e4d80774e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1359,7 +1359,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:58:55 GMT" + "Tue, 27 Oct 2020 02:00:33 GMT" ], "Expires": [ "-1" @@ -1372,15 +1372,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1392,22 +1392,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "6bc2404f-8b05-4702-93e8-7c0c49f58f8e" + "dd3f5801-be3a-4bcb-aa97-9c887b5f8499" ], "x-ms-correlation-request-id": [ - "6bc2404f-8b05-4702-93e8-7c0c49f58f8e" + "dd3f5801-be3a-4bcb-aa97-9c887b5f8499" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215910Z:6bc2404f-8b05-4702-93e8-7c0c49f58f8e" + "WESTUS:20201027T020049Z:dd3f5801-be3a-4bcb-aa97-9c887b5f8499" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1416,7 +1416,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:59:10 GMT" + "Tue, 27 Oct 2020 02:00:48 GMT" ], "Expires": [ "-1" @@ -1429,15 +1429,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1449,22 +1449,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "cad8d03e-6e7f-4947-8a53-2785247ddc13" + "15a6881f-b5d3-4063-b7a0-dc3b9e38daed" ], "x-ms-correlation-request-id": [ - "cad8d03e-6e7f-4947-8a53-2785247ddc13" + "15a6881f-b5d3-4063-b7a0-dc3b9e38daed" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215925Z:cad8d03e-6e7f-4947-8a53-2785247ddc13" + "WESTUS:20201027T020104Z:15a6881f-b5d3-4063-b7a0-dc3b9e38daed" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1473,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:59:25 GMT" + "Tue, 27 Oct 2020 02:01:03 GMT" ], "Expires": [ "-1" @@ -1486,15 +1486,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1506,22 +1506,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "17a73f40-1764-428f-a72c-aaecef3dc1c7" + "56e10b62-7d66-410f-a90e-bf8451bcfd00" ], "x-ms-correlation-request-id": [ - "17a73f40-1764-428f-a72c-aaecef3dc1c7" + "56e10b62-7d66-410f-a90e-bf8451bcfd00" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215940Z:17a73f40-1764-428f-a72c-aaecef3dc1c7" + "WESTUS:20201027T020119Z:56e10b62-7d66-410f-a90e-bf8451bcfd00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1530,7 +1530,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:59:40 GMT" + "Tue, 27 Oct 2020 02:01:18 GMT" ], "Expires": [ "-1" @@ -1543,15 +1543,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1563,22 +1563,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "913c0e98-85d4-44f0-aa06-0baee080a664" + "030e5fb8-855f-42e4-8d40-0df6d1918cad" ], "x-ms-correlation-request-id": [ - "913c0e98-85d4-44f0-aa06-0baee080a664" + "030e5fb8-855f-42e4-8d40-0df6d1918cad" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T215955Z:913c0e98-85d4-44f0-aa06-0baee080a664" + "WESTUS:20201027T020134Z:030e5fb8-855f-42e4-8d40-0df6d1918cad" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1587,7 +1587,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 21:59:55 GMT" + "Tue, 27 Oct 2020 02:01:34 GMT" ], "Expires": [ "-1" @@ -1600,15 +1600,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1620,16 +1620,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "803ba569-578e-4e54-8430-ab0a658df999" + "a4fddcd5-8df0-4c24-a9f0-c574924b8cdc" ], "x-ms-correlation-request-id": [ - "803ba569-578e-4e54-8430-ab0a658df999" + "a4fddcd5-8df0-4c24-a9f0-c574924b8cdc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220010Z:803ba569-578e-4e54-8430-ab0a658df999" + "WESTUS:20201027T020149Z:a4fddcd5-8df0-4c24-a9f0-c574924b8cdc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1638,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:10 GMT" + "Tue, 27 Oct 2020 02:01:49 GMT" ], "Expires": [ "-1" @@ -1651,15 +1651,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjUzOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalV6T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQOTc1Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPVGMxTWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1671,16 +1671,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "7777abbf-c354-42db-80d5-5aa1b118c801" + "5ea2f92b-c6f0-43c3-bea3-b39286019a97" ], "x-ms-correlation-request-id": [ - "7777abbf-c354-42db-80d5-5aa1b118c801" + "5ea2f92b-c6f0-43c3-bea3-b39286019a97" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T220010Z:7777abbf-c354-42db-80d5-5aa1b118c801" + "WESTUS:20201027T020149Z:5ea2f92b-c6f0-43c3-bea3-b39286019a97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1689,7 +1689,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:00:10 GMT" + "Tue, 27 Oct 2020 02:01:49 GMT" ], "Expires": [ "-1" @@ -1704,10 +1704,10 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup6539" + "cdnResourceGroup9752" ], "ValidateCustomDomainTest": [ - "profile218" + "profile5948" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/GetEdgeNodeTests/GetEdgeNodeTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/GetEdgeNodeTests/GetEdgeNodeTest.json index 4435714db7ba0..f79988c6add5f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/GetEdgeNodeTests/GetEdgeNodeTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/GetEdgeNodeTests/GetEdgeNodeTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9adda101-db09-4d6d-96c2-f9fd92f56fd8" + "05da56d0-de21-4926-ac2c-54ad116a4a88" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -27,10 +27,10 @@ "no-cache" ], "x-ms-request-id": [ - "b817574e-f762-428a-b1cb-89ec0cde0bef" + "60b6ca68-15ff-463a-87d8-c0a40b02dd9d" ], "x-ms-client-request-id": [ - "9adda101-db09-4d6d-96c2-f9fd92f56fd8" + "05da56d0-de21-4926-ac2c-54ad116a4a88" ], "OData-Version": [ "4.0" @@ -48,22 +48,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-tenant-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "a666c753-341a-4171-846e-27989029d71a" + "3743b87d-5772-47d7-a58c-77f25546afd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233430Z:a666c753-341a-4171-846e-27989029d71a" + "WESTUS:20201027T030436Z:3743b87d-5772-47d7-a58c-77f25546afd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:30 GMT" + "Tue, 27 Oct 2020 03:04:36 GMT" ], "Content-Length": [ - "15513" + "17091" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -72,7 +72,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Standard_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Premium_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Premium_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Custom_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Custom_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Standard_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Standard_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"119.46.85.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"49.231.126.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"136.228.144.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:fb0:109f:8005::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:9800:61:1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2404:b300:33:1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Premium_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Premium_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"119.46.85.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"49.231.126.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"136.228.144.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:fb0:109f:8005::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:9800:61:1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2404:b300:33:1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n {\r\n \"name\": \"Custom_Verizon\",\r\n \"id\": \"/providers/Microsoft.Cdn/edgenodes/Custom_Verizon\",\r\n \"type\": \"Microsoft.Cdn/edgenodes\",\r\n \"properties\": {\r\n \"ipAddressGroups\": [\r\n {\r\n \"deliveryRegion\": \"All\",\r\n \"ipv4Addresses\": [\r\n {\r\n \"baseIpAddress\": \"5.104.64.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"46.22.64.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"61.221.181.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"68.232.32.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"72.21.80.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.45.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"93.184.208.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"101.226.203.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"108.161.240.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"110.232.176.0\",\r\n \"prefixLength\": 22\r\n },\r\n {\r\n \"baseIpAddress\": \"117.18.232.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"117.103.183.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"120.132.137.0\",\r\n \"prefixLength\": 25\r\n },\r\n {\r\n \"baseIpAddress\": \"121.156.59.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"121.189.46.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"152.195.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"180.240.184.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"192.16.0.0\",\r\n \"prefixLength\": 18\r\n },\r\n {\r\n \"baseIpAddress\": \"192.30.0.0\",\r\n \"prefixLength\": 19\r\n },\r\n {\r\n \"baseIpAddress\": \"192.229.128.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.210.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"198.7.16.0\",\r\n \"prefixLength\": 20\r\n },\r\n {\r\n \"baseIpAddress\": \"203.74.4.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.64.234.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.65.58.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.140.206.0\",\r\n \"prefixLength\": 23\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.0.0\",\r\n \"prefixLength\": 17\r\n },\r\n {\r\n \"baseIpAddress\": \"152.190.247.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.137.0\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.222.145.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.198.79.64\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.199.146.192\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.151.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.157.192\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.128.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"68.130.136.0\",\r\n \"prefixLength\": 21\r\n },\r\n {\r\n \"baseIpAddress\": \"65.200.46.128\",\r\n \"prefixLength\": 26\r\n },\r\n {\r\n \"baseIpAddress\": \"213.175.80.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"152.199.0.0\",\r\n \"prefixLength\": 16\r\n },\r\n {\r\n \"baseIpAddress\": \"36.67.255.152\",\r\n \"prefixLength\": 29\r\n },\r\n {\r\n \"baseIpAddress\": \"194.255.242.160\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"195.67.219.64\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"88.194.47.224\",\r\n \"prefixLength\": 27\r\n },\r\n {\r\n \"baseIpAddress\": \"203.66.205.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"110.164.36.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"119.46.85.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"49.231.126.0\",\r\n \"prefixLength\": 24\r\n },\r\n {\r\n \"baseIpAddress\": \"136.228.144.0\",\r\n \"prefixLength\": 24\r\n }\r\n ],\r\n \"ipv6Addresses\": [\r\n {\r\n \"baseIpAddress\": \"2001:2011:c002::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2040:c006::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:2060:bffb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:b032:c101::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edca::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:8f00:edcb::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2606:2800::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40ff:fffb::\",\r\n \"prefixLength\": 56\r\n },\r\n {\r\n \"baseIpAddress\": \"2a02:16d8:103::\",\r\n \"prefixLength\": 48\r\n },\r\n {\r\n \"baseIpAddress\": \"2600:40fc::\",\r\n \"prefixLength\": 32\r\n },\r\n {\r\n \"baseIpAddress\": \"2403:6200:ffff:ffa1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2001:fb0:109f:8005::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2405:9800:61:1::\",\r\n \"prefixLength\": 64\r\n },\r\n {\r\n \"baseIpAddress\": \"2404:b300:33:1::\",\r\n \"prefixLength\": 64\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/NameAvailabilityTests/EndpointCheckNameAvailabilityTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/NameAvailabilityTests/EndpointCheckNameAvailabilityTest.json index 9eccaed82d92e..4d238da9ece5d 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/NameAvailabilityTests/EndpointCheckNameAvailabilityTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/NameAvailabilityTests/EndpointCheckNameAvailabilityTest.json @@ -4,19 +4,19 @@ "RequestUri": "/providers/Microsoft.Cdn/checkNameAvailability?api-version=2020-04-15", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrTmFtZUF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"endpoint-unique9810\",\r\n \"type\": \"Microsoft.Cdn/Profiles/Endpoints\"\r\n}", + "RequestBody": "{\r\n \"name\": \"endpoint-unique5538\",\r\n \"type\": \"Microsoft.Cdn/Profiles/Endpoints\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf6651bb-e744-408a-9fe4-983ed08bd363" + "7d19b300-691b-4a42-90f2-f84e11284a7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,10 +33,10 @@ "no-cache" ], "x-ms-request-id": [ - "2aa46ca0-5b03-43f2-a26d-fd789638cdca" + "dfcd33e4-6e99-410e-8d2f-7d061a75756f" ], "x-ms-client-request-id": [ - "cf6651bb-e744-408a-9fe4-983ed08bd363" + "7d19b300-691b-4a42-90f2-f84e11284a7c" ], "OData-Version": [ "4.0" @@ -57,16 +57,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "0be26fa3-94e3-4f7d-b866-e89a669a545c" + "62e21e1f-8676-4faf-b9af-aa09f97b8d95" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233018Z:0be26fa3-94e3-4f7d-b866-e89a669a545c" + "WESTUS:20201027T013839Z:62e21e1f-8676-4faf-b9af-aa09f97b8d95" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:18 GMT" + "Tue, 27 Oct 2020 01:38:39 GMT" ], "Content-Length": [ "57" @@ -85,19 +85,19 @@ "RequestUri": "/providers/Microsoft.Cdn/checkNameAvailability?api-version=2020-04-15", "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL2NoZWNrTmFtZUF2YWlsYWJpbGl0eT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", - "RequestBody": "{\r\n \"name\": \"endpoint-unique9810\",\r\n \"type\": \"Microsoft.Cdn/Profiles/Endpoints\"\r\n}", + "RequestBody": "{\r\n \"name\": \"endpoint-unique5538\",\r\n \"type\": \"Microsoft.Cdn/Profiles/Endpoints\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7f83e3f1-f47a-420a-87a1-e64f8f554996" + "195be7b6-6222-4b9e-b338-0910fa4185b4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,10 +114,10 @@ "no-cache" ], "x-ms-request-id": [ - "fb162995-85dc-4e59-b4c8-9aaa42066e37" + "701adce3-d63c-4641-a0f1-afad41452e55" ], "x-ms-client-request-id": [ - "7f83e3f1-f47a-420a-87a1-e64f8f554996" + "195be7b6-6222-4b9e-b338-0910fa4185b4" ], "OData-Version": [ "4.0" @@ -138,16 +138,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "8d98af19-2473-4bb9-bee1-5b3508ecc883" + "3075cdd4-1a8e-4eb4-8902-1b5cd1a5449a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233125Z:8d98af19-2473-4bb9-bee1-5b3508ecc883" + "WESTUS:20201027T013946Z:3075cdd4-1a8e-4eb4-8902-1b5cd1a5449a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:24 GMT" + "Tue, 27 Oct 2020 01:39:45 GMT" ], "Content-Length": [ "94" @@ -163,21 +163,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d4e4dc91-4a95-4a45-b645-5c10fe856fde" + "1c99915e-f61f-4ee1-aef8-a6aade35786d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -198,13 +198,13 @@ "1199" ], "x-ms-request-id": [ - "a7a8a670-c968-41ff-8698-7bd5af20a175" + "89d3d541-abee-4a4e-9a21-aa56c08852a6" ], "x-ms-correlation-request-id": [ - "a7a8a670-c968-41ff-8698-7bd5af20a175" + "89d3d541-abee-4a4e-9a21-aa56c08852a6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233018Z:a7a8a670-c968-41ff-8698-7bd5af20a175" + "WESTUS:20201027T013840Z:89d3d541-abee-4a4e-9a21-aa56c08852a6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -213,7 +213,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:18 GMT" + "Tue, 27 Oct 2020 01:38:39 GMT" ], "Content-Length": [ "193" @@ -225,26 +225,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7324\",\r\n \"name\": \"cdnResourceGroup7324\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3986\",\r\n \"name\": \"cdnResourceGroup3986\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0MTU1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "080f8fd2-c925-4ec9-9cf4-4a99af1d1d48" + "83a64bf7-c370-44c0-99ef-65218e20ff9f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -264,13 +264,13 @@ "10" ], "x-ms-request-id": [ - "e32ab47c-6efc-48a4-8216-0cf2606043d8" + "d246b533-2e3c-41ea-9b5e-1a2b85b8b958" ], "x-ms-client-request-id": [ - "080f8fd2-c925-4ec9-9cf4-4a99af1d1d48" + "83a64bf7-c370-44c0-99ef-65218e20ff9f" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/2de401b1-3090-44f8-8605-3b3fc701a1c3?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/c7c4b70d-2ed4-42e5-bf32-f8c5aff04663?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -291,16 +291,16 @@ "24" ], "x-ms-correlation-request-id": [ - "b971fb0e-21ff-443e-8bc6-6b4803e1a106" + "8efbaa47-a4cd-4a10-9816-fef87245f927" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233026Z:b971fb0e-21ff-443e-8bc6-6b4803e1a106" + "WESTUS:20201027T013843Z:8efbaa47-a4cd-4a10-9816-fef87245f927" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:26 GMT" + "Tue, 27 Oct 2020 01:38:43 GMT" ], "Content-Length": [ "398" @@ -312,20 +312,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4155\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile7177\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/2de401b1-3090-44f8-8605-3b3fc701a1c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmRlNDAxYjEtMzA5MC00NGY4LTg2MDUtM2IzZmM3MDFhMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/c7c4b70d-2ed4-42e5-bf32-f8c5aff04663?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzdjNGI3MGQtMmVkNC00MmU1LWJmMzItZjhjNWFmZjA0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -336,10 +336,10 @@ "no-cache" ], "x-ms-request-id": [ - "a8221d16-470c-46fb-85b1-70ab959725fa" + "1025f0a9-7164-46f0-85f8-4384b003847d" ], "x-ms-client-request-id": [ - "aae3e42b-a6ff-41fa-be4f-ce8c1efeb719" + "71ef807c-4904-47df-bc6d-cd00618c9823" ], "OData-Version": [ "4.0" @@ -360,16 +360,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "8bd16709-5ff3-4e3d-82bd-1ade25a5ce98" + "f0f99472-d500-41ce-8a4a-a9ef4a9a07b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233036Z:8bd16709-5ff3-4e3d-82bd-1ade25a5ce98" + "WESTUS:20201027T013853Z:f0f99472-d500-41ce-8a4a-a9ef4a9a07b7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:36 GMT" + "Tue, 27 Oct 2020 01:38:53 GMT" ], "Content-Length": [ "78" @@ -385,16 +385,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/2de401b1-3090-44f8-8605-3b3fc701a1c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmRlNDAxYjEtMzA5MC00NGY4LTg2MDUtM2IzZmM3MDFhMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/c7c4b70d-2ed4-42e5-bf32-f8c5aff04663?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzdjNGI3MGQtMmVkNC00MmU1LWJmMzItZjhjNWFmZjA0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -405,10 +405,10 @@ "no-cache" ], "x-ms-request-id": [ - "5559a4e3-2ff2-488d-87f7-9e4857aa81fa" + "025138db-088c-4934-a77e-5870b45db7b7" ], "x-ms-client-request-id": [ - "029d6bf8-824a-4e5a-b208-a403583b8b15" + "b54c6390-09ef-4123-84d9-beb552c491db" ], "OData-Version": [ "4.0" @@ -429,16 +429,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "91cd90c3-7acb-462f-ad96-1f428df92d3c" + "bdde494c-6a2d-4ca0-8caf-f439d3d0daea" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233047Z:91cd90c3-7acb-462f-ad96-1f428df92d3c" + "WESTUS:20201027T013904Z:bdde494c-6a2d-4ca0-8caf-f439d3d0daea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:46 GMT" + "Tue, 27 Oct 2020 01:39:03 GMT" ], "Content-Length": [ "78" @@ -454,16 +454,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/2de401b1-3090-44f8-8605-3b3fc701a1c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmRlNDAxYjEtMzA5MC00NGY4LTg2MDUtM2IzZmM3MDFhMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/c7c4b70d-2ed4-42e5-bf32-f8c5aff04663?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYzdjNGI3MGQtMmVkNC00MmU1LWJmMzItZjhjNWFmZjA0NjYzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -474,10 +474,10 @@ "no-cache" ], "x-ms-request-id": [ - "1d2ca31d-f278-465e-b883-2c42905c9982" + "cfe821ce-14cc-4230-acb2-81774ad9a3f8" ], "x-ms-client-request-id": [ - "14df9927-80a3-47f0-a663-b7362489a6fc" + "1424da04-e913-496c-beae-a0eff2bbd0dd" ], "OData-Version": [ "4.0" @@ -498,16 +498,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "a8050eb4-af98-4cc2-b98d-318fb699b2b9" + "9fe3e911-434c-42e8-a036-5b55c792450e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233057Z:a8050eb4-af98-4cc2-b98d-318fb699b2b9" + "WESTUS:20201027T013914Z:9fe3e911-434c-42e8-a036-5b55c792450e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:56 GMT" + "Tue, 27 Oct 2020 01:39:14 GMT" ], "Content-Length": [ "77" @@ -523,16 +523,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0MTU1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -543,10 +543,10 @@ "no-cache" ], "x-ms-request-id": [ - "56419847-474d-41a6-a627-891c08f50e59" + "10d52d00-bb03-488c-a637-e41d0917f26c" ], "x-ms-client-request-id": [ - "6273ccca-7a0f-4dcb-b415-c69189252543" + "8113ef85-68f6-4abf-b794-d83d5b492de0" ], "OData-Version": [ "4.0" @@ -567,16 +567,16 @@ "49" ], "x-ms-correlation-request-id": [ - "847e1c07-b9ba-41b4-b893-d6359cb7bf58" + "76d4dccc-402e-4936-8002-68fa0ec04097" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233058Z:847e1c07-b9ba-41b4-b893-d6359cb7bf58" + "WESTUS:20201027T013915Z:76d4dccc-402e-4936-8002-68fa0ec04097" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:57 GMT" + "Tue, 27 Oct 2020 01:39:15 GMT" ], "Content-Length": [ "397" @@ -588,26 +588,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4155\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile7177\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155/endpoints/endpoint-unique9810?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0MTU1L2VuZHBvaW50cy9lbmRwb2ludC11bmlxdWU5ODEwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177/endpoints/endpoint-unique5538?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTc3L2VuZHBvaW50cy9lbmRwb2ludC11bmlxdWU1NTM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": [ - "c8d7e148-a0c8-4331-b8d2-0ac5640b35f3" + "30dc6005-564a-4e24-8e83-16629848e534" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -627,13 +627,13 @@ "10" ], "x-ms-request-id": [ - "520f797a-0365-4fe0-a3cb-c6b3b592d18a" + "844b64c2-5a61-4c2e-8590-6c26eae464eb" ], "x-ms-client-request-id": [ - "c8d7e148-a0c8-4331-b8d2-0ac5640b35f3" + "30dc6005-564a-4e24-8e83-16629848e534" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/d76b64fc-2439-4efb-b8e8-aa15b664d060?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/3182d1e5-561e-42b7-8bb2-7d8bbe144777?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -654,16 +654,16 @@ "99" ], "x-ms-correlation-request-id": [ - "2fa2b024-862f-4778-a466-a0c7a2852168" + "4e881dfc-afba-4f57-a15a-2c326ed44928" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233102Z:2fa2b024-862f-4778-a466-a0c7a2852168" + "WESTUS:20201027T013921Z:4e881dfc-afba-4f57-a15a-2c326ed44928" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:01 GMT" + "Tue, 27 Oct 2020 01:39:20 GMT" ], "Content-Length": [ "1255" @@ -675,20 +675,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-unique9810\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155/endpoints/endpoint-unique9810\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-unique9810.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-unique5538\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177/endpoints/endpoint-unique5538\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-unique5538.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/d76b64fc-2439-4efb-b8e8-aa15b664d060?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDc2YjY0ZmMtMjQzOS00ZWZiLWI4ZTgtYWExNWI2NjRkMDYwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/3182d1e5-561e-42b7-8bb2-7d8bbe144777?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzE4MmQxZTUtNTYxZS00MmI3LThiYjItN2Q4YmJlMTQ0Nzc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -699,10 +699,10 @@ "no-cache" ], "x-ms-request-id": [ - "e9b173fe-83cf-4ee8-9c2a-c319dcec1b17" + "a03411d3-1941-474f-923e-5e9bffaf804e" ], "x-ms-client-request-id": [ - "1953654d-b802-4dc2-9462-9108a790fb92" + "a7dcba95-aeb4-447e-908e-16c355007471" ], "OData-Version": [ "4.0" @@ -723,16 +723,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "087466c8-3c6f-4f6a-a599-1e2e8c980aec" + "eeccd78b-a683-4a12-8d56-38710d052439" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233112Z:087466c8-3c6f-4f6a-a599-1e2e8c980aec" + "WESTUS:20201027T013931Z:eeccd78b-a683-4a12-8d56-38710d052439" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:12 GMT" + "Tue, 27 Oct 2020 01:39:31 GMT" ], "Content-Length": [ "78" @@ -748,16 +748,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/operationresults/d76b64fc-2439-4efb-b8e8-aa15b664d060?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDc2YjY0ZmMtMjQzOS00ZWZiLWI4ZTgtYWExNWI2NjRkMDYwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/operationresults/3182d1e5-561e-42b7-8bb2-7d8bbe144777?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzE4MmQxZTUtNTYxZS00MmI3LThiYjItN2Q4YmJlMTQ0Nzc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -768,10 +768,10 @@ "no-cache" ], "x-ms-request-id": [ - "98229572-f7ff-4a04-82ca-775fda765317" + "f9aae0e6-1acc-4daf-b9e5-f5771ad743f1" ], "x-ms-client-request-id": [ - "fe8012b6-b3ad-4fad-aead-13c0ea5167f9" + "17b41ba5-451f-4a66-82b5-4670188d6810" ], "OData-Version": [ "4.0" @@ -792,16 +792,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "a6f0fa50-0461-4174-a792-8edda9e641a2" + "dc6a0a9a-c6aa-4851-b8fa-e7c0db39cc80" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233123Z:a6f0fa50-0461-4174-a792-8edda9e641a2" + "WESTUS:20201027T013942Z:dc6a0a9a-c6aa-4851-b8fa-e7c0db39cc80" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:22 GMT" + "Tue, 27 Oct 2020 01:39:41 GMT" ], "Content-Length": [ "77" @@ -817,16 +817,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155/endpoints/endpoint-unique9810?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0MTU1L2VuZHBvaW50cy9lbmRwb2ludC11bmlxdWU5ODEwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177/endpoints/endpoint-unique5538?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3MTc3L2VuZHBvaW50cy9lbmRwb2ludC11bmlxdWU1NTM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -837,10 +837,10 @@ "no-cache" ], "x-ms-request-id": [ - "8ae3229e-c093-4b3c-88a5-8359e3caf6b6" + "e95bbaf1-57f9-4b60-b2ac-27cdf39a5d8b" ], "x-ms-client-request-id": [ - "b4e63329-0e19-4394-8982-fb07c59e187c" + "23bd2a47-2dce-43c4-8ec0-88b43757d26f" ], "OData-Version": [ "4.0" @@ -861,16 +861,16 @@ "49" ], "x-ms-correlation-request-id": [ - "7f7fc06c-28d1-4bfc-9f9a-44eb313e515b" + "3ab06b6e-e3e2-4d7a-b369-493a72131368" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233124Z:7f7fc06c-28d1-4bfc-9f9a-44eb313e515b" + "WESTUS:20201027T013943Z:3ab06b6e-e3e2-4d7a-b369-493a72131368" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:23 GMT" + "Tue, 27 Oct 2020 01:39:42 GMT" ], "Content-Length": [ "1255" @@ -882,25 +882,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint-unique9810\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324/providers/Microsoft.Cdn/profiles/profile4155/endpoints/endpoint-unique9810\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-unique9810.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint-unique5538\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986/providers/Microsoft.Cdn/profiles/profile7177/endpoints/endpoint-unique5538\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint-unique5538.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7324?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MzI0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3986?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzOTg2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "be90b8c9-7325-441d-98cf-fcc43ea2e6e0" + "ccdbcd8f-d677-4062-a5ca-25b35a5b230f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -912,7 +912,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -921,13 +921,13 @@ "14999" ], "x-ms-request-id": [ - "20a3024e-032f-4da7-ba1f-9f9d763e4946" + "06cd5274-19d1-4992-b2bb-5c789b0603cd" ], "x-ms-correlation-request-id": [ - "20a3024e-032f-4da7-ba1f-9f9d763e4946" + "06cd5274-19d1-4992-b2bb-5c789b0603cd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233126Z:20a3024e-032f-4da7-ba1f-9f9d763e4946" + "WESTUS:20201027T013946Z:06cd5274-19d1-4992-b2bb-5c789b0603cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,7 +936,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:25 GMT" + "Tue, 27 Oct 2020 01:39:46 GMT" ], "Expires": [ "-1" @@ -949,15 +949,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -969,7 +969,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -978,13 +978,13 @@ "11999" ], "x-ms-request-id": [ - "8c46a479-b719-45de-b1f0-54468de7df4c" + "bed341c5-75f3-4c67-8ad5-83968fa64170" ], "x-ms-correlation-request-id": [ - "8c46a479-b719-45de-b1f0-54468de7df4c" + "bed341c5-75f3-4c67-8ad5-83968fa64170" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233141Z:8c46a479-b719-45de-b1f0-54468de7df4c" + "WESTUS:20201027T014001Z:bed341c5-75f3-4c67-8ad5-83968fa64170" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -993,7 +993,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:41 GMT" + "Tue, 27 Oct 2020 01:40:01 GMT" ], "Expires": [ "-1" @@ -1006,15 +1006,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1026,7 +1026,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1035,13 +1035,13 @@ "11998" ], "x-ms-request-id": [ - "f67a0819-69c9-47f5-b039-7e7c4cb11045" + "c6a2745d-8321-4e49-9837-fe94a5e947d0" ], "x-ms-correlation-request-id": [ - "f67a0819-69c9-47f5-b039-7e7c4cb11045" + "c6a2745d-8321-4e49-9837-fe94a5e947d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233156Z:f67a0819-69c9-47f5-b039-7e7c4cb11045" + "WESTUS:20201027T014016Z:c6a2745d-8321-4e49-9837-fe94a5e947d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1050,7 +1050,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:31:56 GMT" + "Tue, 27 Oct 2020 01:40:15 GMT" ], "Expires": [ "-1" @@ -1063,15 +1063,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1083,7 +1083,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1092,13 +1092,13 @@ "11997" ], "x-ms-request-id": [ - "a47c1827-a20a-4125-9ab6-88470e83e46c" + "cc2a406b-fde5-499c-a03d-91ee28aae795" ], "x-ms-correlation-request-id": [ - "a47c1827-a20a-4125-9ab6-88470e83e46c" + "cc2a406b-fde5-499c-a03d-91ee28aae795" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233211Z:a47c1827-a20a-4125-9ab6-88470e83e46c" + "WESTUS:20201027T014031Z:cc2a406b-fde5-499c-a03d-91ee28aae795" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,7 +1107,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:32:10 GMT" + "Tue, 27 Oct 2020 01:40:30 GMT" ], "Expires": [ "-1" @@ -1120,15 +1120,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1140,7 +1140,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1149,13 +1149,13 @@ "11996" ], "x-ms-request-id": [ - "ebebf653-bc94-48e6-bbc0-5f340d5bec82" + "32e9b1fb-5f06-43f7-a886-ff7affba5d11" ], "x-ms-correlation-request-id": [ - "ebebf653-bc94-48e6-bbc0-5f340d5bec82" + "32e9b1fb-5f06-43f7-a886-ff7affba5d11" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233226Z:ebebf653-bc94-48e6-bbc0-5f340d5bec82" + "WESTUS:20201027T014046Z:32e9b1fb-5f06-43f7-a886-ff7affba5d11" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1164,7 +1164,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:32:25 GMT" + "Tue, 27 Oct 2020 01:40:45 GMT" ], "Expires": [ "-1" @@ -1177,15 +1177,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1197,7 +1197,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1206,13 +1206,13 @@ "11995" ], "x-ms-request-id": [ - "ab416039-c8e4-4275-80fb-a291997d5a6b" + "671dc22c-b4fe-4328-9667-373bbd354c6d" ], "x-ms-correlation-request-id": [ - "ab416039-c8e4-4275-80fb-a291997d5a6b" + "671dc22c-b4fe-4328-9667-373bbd354c6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233241Z:ab416039-c8e4-4275-80fb-a291997d5a6b" + "WESTUS:20201027T014101Z:671dc22c-b4fe-4328-9667-373bbd354c6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1221,7 +1221,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:32:40 GMT" + "Tue, 27 Oct 2020 01:41:00 GMT" ], "Expires": [ "-1" @@ -1234,15 +1234,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1254,7 +1254,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1263,13 +1263,13 @@ "11994" ], "x-ms-request-id": [ - "0c7ccc54-79ad-4ff8-a255-cbc6e7d042a0" + "4594f8ee-9a69-47b0-9f64-ccfbe938996d" ], "x-ms-correlation-request-id": [ - "0c7ccc54-79ad-4ff8-a255-cbc6e7d042a0" + "4594f8ee-9a69-47b0-9f64-ccfbe938996d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233256Z:0c7ccc54-79ad-4ff8-a255-cbc6e7d042a0" + "WESTUS:20201027T014116Z:4594f8ee-9a69-47b0-9f64-ccfbe938996d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1278,7 +1278,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:32:55 GMT" + "Tue, 27 Oct 2020 01:41:15 GMT" ], "Expires": [ "-1" @@ -1291,15 +1291,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1311,7 +1311,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1320,13 +1320,13 @@ "11993" ], "x-ms-request-id": [ - "13bff215-f077-4dc3-881a-84c8eab2297a" + "4e631e93-3aaa-491c-b03c-cc46fb38ee9c" ], "x-ms-correlation-request-id": [ - "13bff215-f077-4dc3-881a-84c8eab2297a" + "4e631e93-3aaa-491c-b03c-cc46fb38ee9c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233311Z:13bff215-f077-4dc3-881a-84c8eab2297a" + "WESTUS:20201027T014131Z:4e631e93-3aaa-491c-b03c-cc46fb38ee9c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1335,7 +1335,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:33:10 GMT" + "Tue, 27 Oct 2020 01:41:31 GMT" ], "Expires": [ "-1" @@ -1348,15 +1348,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1368,7 +1368,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1377,13 +1377,13 @@ "11992" ], "x-ms-request-id": [ - "3f1f0e1c-3c0c-499d-a186-8839d3974368" + "fe1a3789-56e6-481c-ac68-831dbd692cec" ], "x-ms-correlation-request-id": [ - "3f1f0e1c-3c0c-499d-a186-8839d3974368" + "fe1a3789-56e6-481c-ac68-831dbd692cec" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233326Z:3f1f0e1c-3c0c-499d-a186-8839d3974368" + "WESTUS:20201027T014146Z:fe1a3789-56e6-481c-ac68-831dbd692cec" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1392,7 +1392,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:33:25 GMT" + "Tue, 27 Oct 2020 01:41:46 GMT" ], "Expires": [ "-1" @@ -1405,15 +1405,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1425,7 +1425,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1434,13 +1434,13 @@ "11991" ], "x-ms-request-id": [ - "bb9877d8-f9c8-4d64-babb-7a166f0e5b5b" + "9d64ef51-df5b-4ba7-9796-cb80c4f5ff1f" ], "x-ms-correlation-request-id": [ - "bb9877d8-f9c8-4d64-babb-7a166f0e5b5b" + "9d64ef51-df5b-4ba7-9796-cb80c4f5ff1f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233341Z:bb9877d8-f9c8-4d64-babb-7a166f0e5b5b" + "WESTUS:20201027T014201Z:9d64ef51-df5b-4ba7-9796-cb80c4f5ff1f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,7 +1449,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:33:41 GMT" + "Tue, 27 Oct 2020 01:42:01 GMT" ], "Expires": [ "-1" @@ -1462,15 +1462,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1482,7 +1482,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1491,13 +1491,13 @@ "11990" ], "x-ms-request-id": [ - "2c25140e-6b1c-4ec3-8034-49db68ff0420" + "56ad7b6f-d00a-4215-986f-5dbb1f6da5a8" ], "x-ms-correlation-request-id": [ - "2c25140e-6b1c-4ec3-8034-49db68ff0420" + "56ad7b6f-d00a-4215-986f-5dbb1f6da5a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233356Z:2c25140e-6b1c-4ec3-8034-49db68ff0420" + "WESTUS:20201027T014216Z:56ad7b6f-d00a-4215-986f-5dbb1f6da5a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1506,7 +1506,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:33:56 GMT" + "Tue, 27 Oct 2020 01:42:16 GMT" ], "Expires": [ "-1" @@ -1519,15 +1519,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1542,13 +1542,13 @@ "11989" ], "x-ms-request-id": [ - "befe207a-82d7-4074-85c2-d25967368c0f" + "95463a04-99ba-450d-b709-4bd639a50841" ], "x-ms-correlation-request-id": [ - "befe207a-82d7-4074-85c2-d25967368c0f" + "95463a04-99ba-450d-b709-4bd639a50841" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233411Z:befe207a-82d7-4074-85c2-d25967368c0f" + "WESTUS:20201027T014231Z:95463a04-99ba-450d-b709-4bd639a50841" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1557,7 +1557,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:11 GMT" + "Tue, 27 Oct 2020 01:42:31 GMT" ], "Expires": [ "-1" @@ -1570,15 +1570,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzMyNC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOek15TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzk4Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNems0TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1593,13 +1593,13 @@ "11988" ], "x-ms-request-id": [ - "f5fb922e-bab7-4711-a338-3315f324ffb4" + "3e57e240-21ae-4cba-af8f-37e0b6d7cff5" ], "x-ms-correlation-request-id": [ - "f5fb922e-bab7-4711-a338-3315f324ffb4" + "3e57e240-21ae-4cba-af8f-37e0b6d7cff5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233411Z:f5fb922e-bab7-4711-a338-3315f324ffb4" + "WESTUS:20201027T014232Z:3e57e240-21ae-4cba-af8f-37e0b6d7cff5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1608,7 +1608,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:11 GMT" + "Tue, 27 Oct 2020 01:42:31 GMT" ], "Expires": [ "-1" @@ -1623,11 +1623,11 @@ ], "Names": { "EndpointCheckNameAvailabilityTest": [ - "endpoint-unique9810", - "profile4155" + "endpoint-unique5538", + "profile7177" ], "CreateResourceGroup": [ - "cdnResourceGroup7324" + "cdnResourceGroup3986" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OperationsTests/ListOperationsTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OperationsTests/ListOperationsTest.json index fb7eb8bfe02ab..3f5e34c523cc5 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OperationsTests/ListOperationsTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OperationsTests/ListOperationsTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a18e0a0f-d94d-4766-995c-2c5fc0d0df4a" + "3ecf19c6-869e-411d-b69d-13198d01f85f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -27,10 +27,10 @@ "no-cache" ], "x-ms-request-id": [ - "738654c6-73eb-4982-b3f4-39162725c01a" + "376d30f0-e8db-4e73-8b86-3d3808f8dc4d" ], "x-ms-client-request-id": [ - "a18e0a0f-d94d-4766-995c-2c5fc0d0df4a" + "3ecf19c6-869e-411d-b69d-13198d01f85f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -48,19 +48,19 @@ "11999" ], "x-ms-correlation-request-id": [ - "ed12d228-e135-485a-ba41-79520a386832" + "6fe22fd9-16c9-4d30-9b12-1ef288dcfde4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233010Z:ed12d228-e135-485a-ba41-79520a386832" + "WESTUS:20201027T012925Z:6fe22fd9-16c9-4d30-9b12-1ef288dcfde4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:09 GMT" + "Tue, 27 Oct 2020 01:29:24 GMT" ], "Content-Length": [ - "16181" + "19694" ], "Content-Type": [ "application/json; charset=utf-8" @@ -69,7 +69,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Cdn/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn Resource Provider\",\r\n \"operation\": \"Registers the Microsoft.Cdn Resource Provider\",\r\n \"description\": \"Registers the subscription for the CDN resource provider and enables the creation of CDN profiles.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn Operations\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/GenerateSsoUri/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GenerateSsoUri\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/GetSupportedOptimizationTypes/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GetSupportedOptimizationTypes\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Start\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Stop\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Purge/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Purge\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Load/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Load\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/ValidateCustomDomain/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"ValidateCustomDomain\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/DisableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"DisableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/EnableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"EnableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/GenerateSsoUri/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GenerateSsoUri\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/GetSupportedOptimizationTypes/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GetSupportedOptimizationTypes\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Start\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Stop\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Purge/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Purge\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Load/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Load\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/ValidateCustomDomain/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"ValidateCustomDomain\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/DisableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"DisableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/EnableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"EnableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"CheckNameAvailability\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/ValidateProbe/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"ValidateProbe\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of profiles/endpoints\",\r\n \"operation\": \"Read profiles/endpoints log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/profiles/endpoints\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"CoreAnalytics\",\r\n \"displayName\": \"Gets the metrics of the endpoint, e.g., bandwidth, egress, etc.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read cdnwebapplicationfirewallpolicies log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/cdnwebapplicationfirewallpolicies\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"WebApplicationFirewallLogs\",\r\n \"displayName\": \"Web Appliation Firewall Logs\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of profiles\",\r\n \"operation\": \"Read profiles log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/profiles\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AzureCdnAccessLog\",\r\n \"displayName\": \"Azure Cdn Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The metric definition of cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read cdnwebapplicationfirewallpolicies metrics definitions\",\r\n \"description\": \"Gets the available metrics for Microsoft.Cdn\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"WebApplicationFirewallRequestCount\",\r\n \"displayName\": \"Web Application Firewall Request Count\",\r\n \"displayDescription\": \"The number of client requests processed by the Web Application Firewall\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"PolicyName\",\r\n \"displayName\": \"Policy Name\",\r\n \"internalName\": \"WebApplicationFirewallPolicyName\"\r\n },\r\n {\r\n \"name\": \"RuleName\",\r\n \"displayName\": \"Rule Name\",\r\n \"internalName\": \"WebApplicationFirewallRuleName\"\r\n },\r\n {\r\n \"name\": \"Action\",\r\n \"displayName\": \"Action\",\r\n \"internalName\": \"WebApplicationFirewallAction\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles/endpoints\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles/endpoints\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Cdn/register/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn Resource Provider\",\r\n \"operation\": \"Registers the Microsoft.Cdn Resource Provider\",\r\n \"description\": \"Registers the subscription for the CDN resource provider and enables the creation of CDN profiles.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn Operations\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/edgenodes/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"EdgeNode\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/GenerateSsoUri/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GenerateSsoUri\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/GetSupportedOptimizationTypes/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GetSupportedOptimizationTypes\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Start\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Stop\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Purge/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Purge\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/Load/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Load\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/ValidateCustomDomain/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"ValidateCustomDomain\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/DisableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"DisableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/customdomains/EnableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"EnableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origins/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/origingroups/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OperationResult\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/GenerateSsoUri/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GenerateSsoUri\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/GetSupportedOptimizationTypes/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Profile\",\r\n \"operation\": \"GetSupportedOptimizationTypes\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Start/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Start\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Stop/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Stop\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Purge/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Purge\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/Load/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"Load\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/ValidateCustomDomain/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Endpoint\",\r\n \"operation\": \"ValidateCustomDomain\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/originresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Origin\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/DisableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"DisableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/customdomainresults/EnableCustomHttps/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"CustomDomain\",\r\n \"operation\": \"EnableCustomHttps\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults/origingroupresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"OriginGroup\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/operationresults/cdnwebapplicationfirewallpolicyresults/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallmanagedrulesets/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallManagedRuleSetDefinition\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"read\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"write\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"WebApplicationFirewallPolicy\",\r\n \"operation\": \"delete\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/CheckNameAvailability/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"CheckNameAvailability\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/ValidateProbe/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"ValidateProbe\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Cdn/CheckResourceUsage/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"Microsoft.Cdn/\",\r\n \"operation\": \"CheckResourceUsage\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of profiles/endpoints\",\r\n \"operation\": \"Read profiles/endpoints log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/profiles/endpoints\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"CoreAnalytics\",\r\n \"displayName\": \"Gets the metrics of the endpoint, e.g., bandwidth, egress, etc.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read cdnwebapplicationfirewallpolicies log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/cdnwebapplicationfirewallpolicies\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"WebApplicationFirewallLogs\",\r\n \"displayName\": \"Web Appliation Firewall Logs\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The log definition of profiles\",\r\n \"operation\": \"Read profiles log definitions\",\r\n \"description\": \"Gets the available logs for Microsoft.Cdn/profiles\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"AzureCdnAccessLog\",\r\n \"displayName\": \"Azure Cdn Access Log\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The metric definition of cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read cdnwebapplicationfirewallpolicies metrics definitions\",\r\n \"description\": \"Gets the available metrics for Microsoft.Cdn\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"WebApplicationFirewallRequestCount\",\r\n \"displayName\": \"Web Application Firewall Request Count\",\r\n \"displayDescription\": \"The number of client requests processed by the Web Application Firewall\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"PolicyName\",\r\n \"displayName\": \"Policy Name\",\r\n \"internalName\": \"WebApplicationFirewallPolicyName\"\r\n },\r\n {\r\n \"name\": \"RuleName\",\r\n \"displayName\": \"Rule Name\",\r\n \"internalName\": \"WebApplicationFirewallRuleName\"\r\n },\r\n {\r\n \"name\": \"Action\",\r\n \"displayName\": \"Action\",\r\n \"internalName\": \"WebApplicationFirewallAction\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"The metric definition of profiles\",\r\n \"operation\": \"Read profiles metrics definitions\",\r\n \"description\": \"Gets the available metrics for Microsoft.Cdn\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RequestCount\",\r\n \"displayName\": \"Request Count\",\r\n \"displayDescription\": \"The number of client requests served by the HTTP/S proxy\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"HttpStatus\",\r\n \"displayName\": \"Http Status\",\r\n \"internalName\": \"HttpStatusCode\"\r\n },\r\n {\r\n \"name\": \"HttpStatusGroup\",\r\n \"displayName\": \"Http Status Group\",\r\n \"internalName\": \"HttpStatusCodeClass\"\r\n },\r\n {\r\n \"name\": \"ClientRegion\",\r\n \"displayName\": \"Client Region\"\r\n },\r\n {\r\n \"name\": \"ClientCountry\",\r\n \"displayName\": \"Client Country\"\r\n },\r\n {\r\n \"name\": \"Endpoint\",\r\n \"displayName\": \"Endpoint\",\r\n \"internalName\": \"EndpointName\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n },\r\n {\r\n \"name\": \"ResponseSize\",\r\n \"displayName\": \"Response Size\",\r\n \"displayDescription\": \"The number of bytes sent as responses from HTTP/S proxy to clients\",\r\n \"unit\": \"Bytes\",\r\n \"aggregationType\": \"Total\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"HttpStatus\",\r\n \"displayName\": \"Http Status\",\r\n \"internalName\": \"HttpStatusCode\"\r\n },\r\n {\r\n \"name\": \"HttpStatusGroup\",\r\n \"displayName\": \"Http Status Group\",\r\n \"internalName\": \"HttpStatusCodeClass\"\r\n },\r\n {\r\n \"name\": \"ClientRegion\",\r\n \"displayName\": \"Client Region\"\r\n },\r\n {\r\n \"name\": \"ClientCountry\",\r\n \"displayName\": \"Client Country\"\r\n },\r\n {\r\n \"name\": \"Endpoint\",\r\n \"displayName\": \"Endpoint\",\r\n \"internalName\": \"EndpointName\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n },\r\n {\r\n \"name\": \"TotalLatency\",\r\n \"displayName\": \"Total Latency\",\r\n \"displayDescription\": \"The time calculated from when the client request was received by the HTTP/S proxy until the client acknowledged the last response byte from the HTTP/S proxy\",\r\n \"unit\": \"MilliSeconds\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"HttpStatus\",\r\n \"displayName\": \"Http Status\",\r\n \"internalName\": \"HttpStatusCode\"\r\n },\r\n {\r\n \"name\": \"HttpStatusGroup\",\r\n \"displayName\": \"Http Status Group\",\r\n \"internalName\": \"HttpStatusCodeClass\"\r\n },\r\n {\r\n \"name\": \"ClientRegion\",\r\n \"displayName\": \"Client Region\"\r\n },\r\n {\r\n \"name\": \"ClientCountry\",\r\n \"displayName\": \"Client Country\"\r\n },\r\n {\r\n \"name\": \"Endpoint\",\r\n \"displayName\": \"Endpoint\",\r\n \"internalName\": \"EndpointName\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n },\r\n {\r\n \"name\": \"ByteHitRatio\",\r\n \"displayName\": \"Byte Hit Ratio\",\r\n \"displayDescription\": \"This is the ratio of the total bytes served from the cache compared to the total response bytes\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Average\",\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1M\"\r\n }\r\n ],\r\n \"supportedTimeGrainTypes\": [\r\n \"PT1M\",\r\n \"PT5M\",\r\n \"PT15M\",\r\n \"PT30M\",\r\n \"PT1H\",\r\n \"PT6H\",\r\n \"PT12H\",\r\n \"P1D\"\r\n ],\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Endpoint\",\r\n \"displayName\": \"Endpoint\",\r\n \"internalName\": \"EndpointName\"\r\n }\r\n ],\r\n \"sourceMdmAccount\": \"AzureFrontdoorShoebox\",\r\n \"sourceMdmNamespace\": \"Shoebox\",\r\n \"fillGapWithZero\": true,\r\n \"isInternal\": false\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles/endpoints\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles\",\r\n \"operation\": \"Read diagnostic settings\",\r\n \"description\": \"Gets the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/endpoints/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles/endpoints\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"cdnwebapplicationfirewallpolicies\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n },\r\n {\r\n \"origin\": \"system\",\r\n \"name\": \"Microsoft.Cdn/profiles/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft.Cdn\",\r\n \"resource\": \"profiles\",\r\n \"operation\": \"Write diagnostic settings\",\r\n \"description\": \"Creates or updates the diagnostic settings for the resource\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 } ], diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginGetListTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginGetListTest.json index 05346d1d56ae2..34d0ae9a3092f 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginGetListTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginGetListTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c8b9df2-2c8f-44c8-9582-fe0ccfe2e8b6" + "e0ab93ac-41fc-466f-8066-a42259dc940f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "6ee6df23-17a3-4e22-ab96-ad4786c4e4a5" + "ad8e8e91-acc1-45fa-9282-d06f5a426d5e" ], "x-ms-correlation-request-id": [ - "6ee6df23-17a3-4e22-ab96-ad4786c4e4a5" + "ad8e8e91-acc1-45fa-9282-d06f5a426d5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224910Z:6ee6df23-17a3-4e22-ab96-ad4786c4e4a5" + "WESTUS:20201027T014233Z:ad8e8e91-acc1-45fa-9282-d06f5a426d5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:09 GMT" + "Tue, 27 Oct 2020 01:42:32 GMT" ], "Content-Length": [ - "191" + "193" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667\",\r\n \"name\": \"cdnResourceGroup667\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021\",\r\n \"name\": \"cdnResourceGroup4021\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "f6049f75-3dcb-4981-91f2-173d601d2208" + "7c9cdbf9-d530-454d-86e0-667f88534aa2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "0e5b9753-5e81-46ad-87f2-22acc9688433" + "78eab46d-9dfe-464d-83a8-643edfbeac15" ], "x-ms-client-request-id": [ - "f6049f75-3dcb-4981-91f2-173d601d2208" + "7c9cdbf9-d530-454d-86e0-667f88534aa2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/72d74750-e05b-4e68-b61e-3bb26ed01e81?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/e5a274bd-07af-4474-9a65-a4ca900645b7?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,19 +129,19 @@ "24" ], "x-ms-correlation-request-id": [ - "85ddda3d-f895-4888-b52d-197d2133e912" + "68a7fbec-05b8-413b-bc9a-ee6229894120" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224916Z:85ddda3d-f895-4888-b52d-197d2133e912" + "WESTUS:20201027T014241Z:68a7fbec-05b8-413b-bc9a-ee6229894120" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:16 GMT" + "Tue, 27 Oct 2020 01:42:41 GMT" ], "Content-Length": [ - "397" + "398" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5018\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile2062\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/72d74750-e05b-4e68-b61e-3bb26ed01e81?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy83MmQ3NDc1MC1lMDViLTRlNjgtYjYxZS0zYmIyNmVkMDFlODE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/e5a274bd-07af-4474-9a65-a4ca900645b7?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTVhMjc0YmQtMDdhZi00NDc0LTlhNjUtYTRjYTkwMDY0NWI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "ff6cd040-2317-40f9-bb86-0e88cfaf7887" + "ff01765a-6aa0-4319-b1a5-82ab4967751d" ], "x-ms-client-request-id": [ - "9f0053bf-c70e-4ed8-a428-9537d3be06c9" + "fc0ed5ae-f11f-4d85-a41e-2e1653ff5bc5" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "fa37b530-d71d-41d6-8d05-d49f9be598b8" + "777887cd-0a56-45a2-9176-827e1cf3b27a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224927Z:fa37b530-d71d-41d6-8d05-d49f9be598b8" + "WESTUS:20201027T014252Z:777887cd-0a56-45a2-9176-827e1cf3b27a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:26 GMT" + "Tue, 27 Oct 2020 01:42:51 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/72d74750-e05b-4e68-b61e-3bb26ed01e81?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy83MmQ3NDc1MC1lMDViLTRlNjgtYjYxZS0zYmIyNmVkMDFlODE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/e5a274bd-07af-4474-9a65-a4ca900645b7?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTVhMjc0YmQtMDdhZi00NDc0LTlhNjUtYTRjYTkwMDY0NWI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "5bafc9e1-1c21-4a96-878a-e0a5acebad7c" + "03100f26-af5b-45a0-b8bd-748bf875f44b" ], "x-ms-client-request-id": [ - "4a02c04e-a5a7-47c4-b351-5251fd7a4e8e" + "d8f95a2f-2404-4628-8172-2018752f4aff" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "104e5662-b7f2-41c3-b739-6fd4ecc87eb8" + "f51bb4ba-d00d-48d7-8aea-978bba82902b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224937Z:104e5662-b7f2-41c3-b739-6fd4ecc87eb8" + "WESTUS:20201027T014302Z:f51bb4ba-d00d-48d7-8aea-978bba82902b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:36 GMT" + "Tue, 27 Oct 2020 01:43:02 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/72d74750-e05b-4e68-b61e-3bb26ed01e81?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy83MmQ3NDc1MC1lMDViLTRlNjgtYjYxZS0zYmIyNmVkMDFlODE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/e5a274bd-07af-4474-9a65-a4ca900645b7?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZTVhMjc0YmQtMDdhZi00NDc0LTlhNjUtYTRjYTkwMDY0NWI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "e3bef271-5c22-4c51-9454-f47b83e9d8e2" + "f2ddb0b2-0fc9-400e-9d89-e37ffbe2e9ba" ], "x-ms-client-request-id": [ - "c752f8a4-5753-471d-9235-dd2f79ea8d92" + "31d24216-f956-4ea6-a812-ddef3474baff" ], "OData-Version": [ "4.0" @@ -336,16 +336,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "2eaf6ef1-c084-4ce6-846f-e7f29034aa2e" + "e6177398-ba12-42db-969a-b3e432344f16" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224947Z:2eaf6ef1-c084-4ce6-846f-e7f29034aa2e" + "WESTUS:20201027T014312Z:e6177398-ba12-42db-969a-b3e432344f16" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:46 GMT" + "Tue, 27 Oct 2020 01:43:12 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "e9458fab-cb2b-490e-872c-e54af525bf71" + "bd5486b2-779a-4f50-a007-67bdf179bfde" ], "x-ms-client-request-id": [ - "658cbac4-5fd7-4699-9c9a-286ee1a2b372" + "d0055d91-0889-4335-8da7-43b79d43282e" ], "OData-Version": [ "4.0" @@ -405,19 +405,19 @@ "49" ], "x-ms-correlation-request-id": [ - "050e946f-61e2-4a7f-abcf-227d054f7e5b" + "43d34e20-bdc8-4e6d-bef9-fe71dd06f48b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224948Z:050e946f-61e2-4a7f-abcf-227d054f7e5b" + "WESTUS:20201027T014313Z:43d34e20-bdc8-4e6d-bef9-fe71dd06f48b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:47 GMT" + "Tue, 27 Oct 2020 01:43:13 GMT" ], "Content-Length": [ - "396" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5018\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile2062\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTgvZW5kcG9pbnRzL2VuZHBvaW50MzQ5Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyL2VuZHBvaW50cy9lbmRwb2ludDYxNjA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "6ee4acdc-008c-4f87-b96e-165127448b94" + "2dbcde40-917b-46db-896a-12c262515819" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +465,13 @@ "10" ], "x-ms-request-id": [ - "716896df-6bc2-4f04-9117-c96fba884eaf" + "1243ec4c-ab58-4083-bfc7-1d2219da6a8d" ], "x-ms-client-request-id": [ - "6ee4acdc-008c-4f87-b96e-165127448b94" + "2dbcde40-917b-46db-896a-12c262515819" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/484e3341-9f02-41cb-a77f-8450b806693c?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -492,19 +492,19 @@ "99" ], "x-ms-correlation-request-id": [ - "f07d6e42-c71b-4829-b920-978a23d82cee" + "0604382b-9d8d-414a-a288-19b5e2fb1e6e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T224958Z:f07d6e42-c71b-4829-b920-978a23d82cee" + "WESTUS:20201027T014318Z:0604382b-9d8d-414a-a288-19b5e2fb1e6e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:49:57 GMT" + "Tue, 27 Oct 2020 01:43:17 GMT" ], "Content-Length": [ - "1233" + "1234" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -513,20 +513,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3492\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3492.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6160\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6160.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/484e3341-9f02-41cb-a77f-8450b806693c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy80ODRlMzM0MS05ZjAyLTQxY2ItYTc3Zi04NDUwYjgwNjY5M2M/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjEzN2IzNTItMGM5MC00YzIzLWI4NzgtYzQwODBjOTIyMmNmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "96c5ac4f-0fc3-4a44-a94c-7719de353b84" + "8206dc0c-6929-419c-9e3d-cb4024900954" ], "x-ms-client-request-id": [ - "9bca545e-ac5a-4f66-92fd-26616f262df5" + "d623a470-efaf-4f6a-bc46-1ac8bf525047" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "2700c545-92c8-4595-a9ef-7f9a58f79500" + "d2cd30d2-5069-4845-baf5-3a9857ba5dd7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225009Z:2700c545-92c8-4595-a9ef-7f9a58f79500" + "WESTUS:20201027T014328Z:d2cd30d2-5069-4845-baf5-3a9857ba5dd7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:08 GMT" + "Tue, 27 Oct 2020 01:43:28 GMT" ], "Content-Length": [ "78" @@ -586,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/operationresults/484e3341-9f02-41cb-a77f-8450b806693c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy80ODRlMzM0MS05ZjAyLTQxY2ItYTc3Zi04NDUwYjgwNjY5M2M/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjEzN2IzNTItMGM5MC00YzIzLWI4NzgtYzQwODBjOTIyMmNmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "ec52a258-3ee1-483a-8fcc-3ec5416f0f07" + "4335f228-d196-4f66-a5ea-c70734af564f" ], "x-ms-client-request-id": [ - "cce30f37-2f94-4d0b-83db-ee29d398c4b4" + "3e11c705-4b1f-4798-a229-a287d338324d" ], "OData-Version": [ "4.0" @@ -630,16 +630,223 @@ "11995" ], "x-ms-correlation-request-id": [ - "dcdc78ef-ea6d-4ed9-987b-2dc818c59f4b" + "6b82e4d3-0fed-48b8-a24d-c59592db63f9" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T014338Z:6b82e4d3-0fed-48b8-a24d-c59592db63f9" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:43:38 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjEzN2IzNTItMGM5MC00YzIzLWI4NzgtYzQwODBjOTIyMmNmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "cecd7ea0-9125-4fc9-a58b-974d8775c4ab" + ], + "x-ms-client-request-id": [ + "fb65a12f-6518-4ff3-b281-9a6eb44fbfb7" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "3466f676-e8a1-4126-8d54-58a21dd67aed" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T014349Z:3466f676-e8a1-4126-8d54-58a21dd67aed" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:43:48 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjEzN2IzNTItMGM5MC00YzIzLWI4NzgtYzQwODBjOTIyMmNmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "306864f3-b457-4ec1-a0c7-a919c0795fc6" + ], + "x-ms-client-request-id": [ + "ca2e8409-09ac-450f-8c90-7b513500ba08" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11993" + ], + "x-ms-correlation-request-id": [ + "eafe61e2-0223-40e5-b227-95a5618041dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225019Z:dcdc78ef-ea6d-4ed9-987b-2dc818c59f4b" + "WESTUS:20201027T014359Z:eafe61e2-0223-40e5-b227-95a5618041dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:18 GMT" + "Tue, 27 Oct 2020 01:43:58 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/operationresults/2137b352-0c90-4c23-b878-c4080c9222cf?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjEzN2IzNTItMGM5MC00YzIzLWI4NzgtYzQwODBjOTIyMmNmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "ebadb041-355e-4a3f-8437-39bbf4ca64da" + ], + "x-ms-client-request-id": [ + "57c8e0ba-b0f8-46e4-bcb6-85a9d4d9cb77" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11992" + ], + "x-ms-correlation-request-id": [ + "8120e19c-d0c6-434c-905a-7921559f946d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T014409Z:8120e19c-d0c6-434c-905a-7921559f946d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:44:09 GMT" ], "Content-Length": [ "77" @@ -655,16 +862,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTgvZW5kcG9pbnRzL2VuZHBvaW50MzQ5Mj9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyL2VuZHBvaW50cy9lbmRwb2ludDYxNjA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +882,10 @@ "no-cache" ], "x-ms-request-id": [ - "ff0623e4-23a8-49e0-975c-20c5ae86b478" + "40d302e9-1025-42ca-8faf-3b6b09ed3ef2" ], "x-ms-client-request-id": [ - "1ef28bc6-b7f9-417e-9be5-b945458ee058" + "4f4e0141-0d72-4675-ae90-3d1af1b557ef" ], "OData-Version": [ "4.0" @@ -699,19 +906,19 @@ "49" ], "x-ms-correlation-request-id": [ - "690db8f3-9d20-4e9f-8105-0c1e45cd42cf" + "df502732-6360-481c-9a39-27e98b791d78" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225020Z:690db8f3-9d20-4e9f-8105-0c1e45cd42cf" + "WESTUS:20201027T014410Z:df502732-6360-481c-9a39-27e98b791d78" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:19 GMT" + "Tue, 27 Oct 2020 01:44:10 GMT" ], "Content-Length": [ - "1233" + "1234" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -720,26 +927,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3492\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3492.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6160\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6160.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTgvZW5kcG9pbnRzL2VuZHBvaW50MzQ5Mi9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyL2VuZHBvaW50cy9lbmRwb2ludDYxNjAvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "40238c4b-61a6-43fb-9e99-f4b947df90a7" + "0409fdba-19cf-4150-8312-1acb41bcdbbd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -750,10 +957,10 @@ "no-cache" ], "x-ms-request-id": [ - "10d28d79-385b-42b2-92e5-063c8f69e6ed" + "6d62407c-a7fb-4df1-b7c0-8493cf153689" ], "x-ms-client-request-id": [ - "40238c4b-61a6-43fb-9e99-f4b947df90a7" + "0409fdba-19cf-4150-8312-1acb41bcdbbd" ], "OData-Version": [ "4.0" @@ -771,22 +978,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11991" ], "x-ms-correlation-request-id": [ - "3f258c33-5733-4bbe-b2ab-838b0d9ca154" + "684f47cd-1d92-40e7-99f2-ff13512c19e3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225021Z:3f258c33-5733-4bbe-b2ab-838b0d9ca154" + "WESTUS:20201027T014411Z:684f47cd-1d92-40e7-99f2-ff13512c19e3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:20 GMT" + "Tue, 27 Oct 2020 01:44:10 GMT" ], "Content-Length": [ - "608" + "609" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -795,26 +1002,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"enabled\": true,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"enabled\": true,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492/origins?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2NjcvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTUwMTgvZW5kcG9pbnRzL2VuZHBvaW50MzQ5Mi9vcmlnaW5zP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160/origins?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDYyL2VuZHBvaW50cy9lbmRwb2ludDYxNjAvb3JpZ2lucz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8ae3b604-d993-4946-bf68-39d3f701c421" + "ff9b5ca0-bb87-4635-83a1-24ef9e33e24a" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -825,10 +1032,10 @@ "no-cache" ], "x-ms-request-id": [ - "ad514dcc-72d8-4cb1-940c-cd59a16fbcd4" + "aaddf858-2c23-43a0-8344-2ff529b7bf44" ], "x-ms-client-request-id": [ - "8ae3b604-d993-4946-bf68-39d3f701c421" + "ff9b5ca0-bb87-4635-83a1-24ef9e33e24a" ], "OData-Version": [ "4.0" @@ -846,22 +1053,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11990" ], "x-ms-correlation-request-id": [ - "f2d8bfc8-3f7b-461f-93bc-a4fcf81afa69" + "e4c79ff9-a88d-4d37-b036-3ddb63e481ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225021Z:f2d8bfc8-3f7b-461f-93bc-a4fcf81afa69" + "WESTUS:20201027T014412Z:e4c79ff9-a88d-4d37-b036-3ddb63e481ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:20 GMT" + "Tue, 27 Oct 2020 01:44:11 GMT" ], "Content-Length": [ - "652" + "653" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -870,25 +1077,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667/providers/Microsoft.Cdn/profiles/profile5018/endpoints/endpoint3492/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"enabled\": true,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021/providers/Microsoft.Cdn/profiles/profile2062/endpoints/endpoint6160/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"host1.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"enabled\": true,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup667?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2Njc/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4021?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MDIxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f09d7222-ac7b-4ee3-b765-3a2bbab0cc9d" + "dcb681a4-e064-4590-916c-c79a62bfae7c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -900,7 +1107,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -909,13 +1116,13 @@ "14999" ], "x-ms-request-id": [ - "45fc4782-514b-4a06-b28a-1c289846d81e" + "f0cf0dfd-16ab-473b-be83-3d78b415a244" ], "x-ms-correlation-request-id": [ - "45fc4782-514b-4a06-b28a-1c289846d81e" + "f0cf0dfd-16ab-473b-be83-3d78b415a244" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225021Z:45fc4782-514b-4a06-b28a-1c289846d81e" + "WESTUS:20201027T014412Z:f0cf0dfd-16ab-473b-be83-3d78b415a244" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -924,7 +1131,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:21 GMT" + "Tue, 27 Oct 2020 01:44:12 GMT" ], "Expires": [ "-1" @@ -937,15 +1144,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -957,22 +1164,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-request-id": [ - "7a1589cb-ee3b-4cbe-ba40-f900980d88c3" + "4cd0101c-ee53-4b50-80dd-87dbf1167b42" ], "x-ms-correlation-request-id": [ - "7a1589cb-ee3b-4cbe-ba40-f900980d88c3" + "4cd0101c-ee53-4b50-80dd-87dbf1167b42" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225037Z:7a1589cb-ee3b-4cbe-ba40-f900980d88c3" + "WESTUS:20201027T014427Z:4cd0101c-ee53-4b50-80dd-87dbf1167b42" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -981,7 +1188,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:36 GMT" + "Tue, 27 Oct 2020 01:44:27 GMT" ], "Expires": [ "-1" @@ -994,15 +1201,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1014,22 +1221,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-request-id": [ - "0f21e380-5f2e-4d17-a26b-bd6607a38cde" + "417d3c58-ec35-4e0d-a1c2-f47e7a4b5c9a" ], "x-ms-correlation-request-id": [ - "0f21e380-5f2e-4d17-a26b-bd6607a38cde" + "417d3c58-ec35-4e0d-a1c2-f47e7a4b5c9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225052Z:0f21e380-5f2e-4d17-a26b-bd6607a38cde" + "WESTUS:20201027T014442Z:417d3c58-ec35-4e0d-a1c2-f47e7a4b5c9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1038,7 +1245,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:50:51 GMT" + "Tue, 27 Oct 2020 01:44:42 GMT" ], "Expires": [ "-1" @@ -1051,15 +1258,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1071,22 +1278,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-request-id": [ - "d5f51626-3d19-4456-a8a8-0c3f6fbcabd4" + "bf7c26c6-4a79-4581-9931-325be1d95f9a" ], "x-ms-correlation-request-id": [ - "d5f51626-3d19-4456-a8a8-0c3f6fbcabd4" + "bf7c26c6-4a79-4581-9931-325be1d95f9a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225107Z:d5f51626-3d19-4456-a8a8-0c3f6fbcabd4" + "WESTUS:20201027T014458Z:bf7c26c6-4a79-4581-9931-325be1d95f9a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1095,7 +1302,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:51:06 GMT" + "Tue, 27 Oct 2020 01:44:57 GMT" ], "Expires": [ "-1" @@ -1108,15 +1315,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1128,22 +1335,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11995" ], "x-ms-request-id": [ - "47fbfaee-ea54-49b5-9edc-7eeae9b1c61e" + "b83fab04-7f01-4361-8bbf-5883ba472cb2" ], "x-ms-correlation-request-id": [ - "47fbfaee-ea54-49b5-9edc-7eeae9b1c61e" + "b83fab04-7f01-4361-8bbf-5883ba472cb2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225122Z:47fbfaee-ea54-49b5-9edc-7eeae9b1c61e" + "WESTUS:20201027T014513Z:b83fab04-7f01-4361-8bbf-5883ba472cb2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1152,7 +1359,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:51:21 GMT" + "Tue, 27 Oct 2020 01:45:12 GMT" ], "Expires": [ "-1" @@ -1165,15 +1372,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1185,22 +1392,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-request-id": [ - "2a1d8b22-bbed-483e-94fd-b69980b7f766" + "62e90d3b-dcac-4dff-85c0-b33caa6639fb" ], "x-ms-correlation-request-id": [ - "2a1d8b22-bbed-483e-94fd-b69980b7f766" + "62e90d3b-dcac-4dff-85c0-b33caa6639fb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225137Z:2a1d8b22-bbed-483e-94fd-b69980b7f766" + "WESTUS:20201027T014528Z:62e90d3b-dcac-4dff-85c0-b33caa6639fb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1209,7 +1416,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:51:36 GMT" + "Tue, 27 Oct 2020 01:45:27 GMT" ], "Expires": [ "-1" @@ -1222,15 +1429,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1242,22 +1449,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-request-id": [ - "ef9d832f-d09c-4aa3-96bb-c1491280d9d6" + "7940127f-7701-43a2-b50d-9f0b4e12a740" ], "x-ms-correlation-request-id": [ - "ef9d832f-d09c-4aa3-96bb-c1491280d9d6" + "7940127f-7701-43a2-b50d-9f0b4e12a740" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225152Z:ef9d832f-d09c-4aa3-96bb-c1491280d9d6" + "WESTUS:20201027T014543Z:7940127f-7701-43a2-b50d-9f0b4e12a740" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1266,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:51:51 GMT" + "Tue, 27 Oct 2020 01:45:43 GMT" ], "Expires": [ "-1" @@ -1279,15 +1486,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1299,22 +1506,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-request-id": [ - "1cd1a075-cd2c-4f26-8e0f-0407d33d4d6c" + "a2b7c991-ee2b-4b27-9ed3-e7627f05c51f" ], "x-ms-correlation-request-id": [ - "1cd1a075-cd2c-4f26-8e0f-0407d33d4d6c" + "a2b7c991-ee2b-4b27-9ed3-e7627f05c51f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225207Z:1cd1a075-cd2c-4f26-8e0f-0407d33d4d6c" + "WESTUS:20201027T014558Z:a2b7c991-ee2b-4b27-9ed3-e7627f05c51f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1323,7 +1530,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:52:06 GMT" + "Tue, 27 Oct 2020 01:45:58 GMT" ], "Expires": [ "-1" @@ -1336,15 +1543,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1356,22 +1563,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11991" ], "x-ms-request-id": [ - "62704405-9e6b-43b7-99da-94da7fd81799" + "e5a3b4d5-6d1e-4f75-82d3-a847095c55c0" ], "x-ms-correlation-request-id": [ - "62704405-9e6b-43b7-99da-94da7fd81799" + "e5a3b4d5-6d1e-4f75-82d3-a847095c55c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225222Z:62704405-9e6b-43b7-99da-94da7fd81799" + "WESTUS:20201027T014613Z:e5a3b4d5-6d1e-4f75-82d3-a847095c55c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1380,7 +1587,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:52:21 GMT" + "Tue, 27 Oct 2020 01:46:13 GMT" ], "Expires": [ "-1" @@ -1393,15 +1600,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1413,22 +1620,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11990" ], "x-ms-request-id": [ - "b7cfebcf-b428-4763-90e6-c5cdd09a5099" + "4bf8423f-91e0-4d19-941c-5eaabcf095c0" ], "x-ms-correlation-request-id": [ - "b7cfebcf-b428-4763-90e6-c5cdd09a5099" + "4bf8423f-91e0-4d19-941c-5eaabcf095c0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225237Z:b7cfebcf-b428-4763-90e6-c5cdd09a5099" + "WESTUS:20201027T014628Z:4bf8423f-91e0-4d19-941c-5eaabcf095c0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1437,7 +1644,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:52:36 GMT" + "Tue, 27 Oct 2020 01:46:28 GMT" ], "Expires": [ "-1" @@ -1450,15 +1657,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1470,22 +1677,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11989" ], "x-ms-request-id": [ - "af3aa60d-c629-4ab7-9b45-8e26eaec1dcb" + "7866353a-988a-4bc3-8be2-85a8eb7ea528" ], "x-ms-correlation-request-id": [ - "af3aa60d-c629-4ab7-9b45-8e26eaec1dcb" + "7866353a-988a-4bc3-8be2-85a8eb7ea528" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225252Z:af3aa60d-c629-4ab7-9b45-8e26eaec1dcb" + "WESTUS:20201027T014643Z:7866353a-988a-4bc3-8be2-85a8eb7ea528" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1494,7 +1701,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:52:51 GMT" + "Tue, 27 Oct 2020 01:46:42 GMT" ], "Expires": [ "-1" @@ -1507,15 +1714,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1527,16 +1734,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11988" ], "x-ms-request-id": [ - "dc2c4644-e210-4ce2-aceb-ddda5266ada6" + "156442f2-ce64-40d7-b899-c943575c2dbf" ], "x-ms-correlation-request-id": [ - "dc2c4644-e210-4ce2-aceb-ddda5266ada6" + "156442f2-ce64-40d7-b899-c943575c2dbf" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225307Z:dc2c4644-e210-4ce2-aceb-ddda5266ada6" + "WESTUS:20201027T014658Z:156442f2-ce64-40d7-b899-c943575c2dbf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1752,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:06 GMT" + "Tue, 27 Oct 2020 01:46:57 GMT" ], "Expires": [ "-1" @@ -1558,15 +1765,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjY3LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOalkzTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDAyMS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREF5TVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1578,16 +1785,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-request-id": [ - "cf623aa1-0447-41cf-8260-c8b43c8faf9a" + "dbd17999-abeb-44d9-b7e6-dfb82f0bc99e" ], "x-ms-correlation-request-id": [ - "cf623aa1-0447-41cf-8260-c8b43c8faf9a" + "dbd17999-abeb-44d9-b7e6-dfb82f0bc99e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225307Z:cf623aa1-0447-41cf-8260-c8b43c8faf9a" + "WESTUS:20201027T014658Z:dbd17999-abeb-44d9-b7e6-dfb82f0bc99e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1803,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:06 GMT" + "Tue, 27 Oct 2020 01:46:57 GMT" ], "Expires": [ "-1" @@ -1611,11 +1818,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup667" + "cdnResourceGroup4021" ], "OriginGetListTest": [ - "profile5018", - "endpoint3492" + "profile2062", + "endpoint6160" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json index 170cea793f175..13bf3f3a2bfb7 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6160d641-7220-4def-9480-dd6c97a40eb8" + "9a61a372-d875-48aa-972a-bd80fe26ade3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "6b47f1f0-55b0-44be-8029-7ddacadedf7f" + "54d7dcdc-8659-41f4-8aec-4fc89c3c424b" ], "x-ms-correlation-request-id": [ - "6b47f1f0-55b0-44be-8029-7ddacadedf7f" + "54d7dcdc-8659-41f4-8aec-4fc89c3c424b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225308Z:6b47f1f0-55b0-44be-8029-7ddacadedf7f" + "WESTUS:20201027T014700Z:54d7dcdc-8659-41f4-8aec-4fc89c3c424b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:07 GMT" + "Tue, 27 Oct 2020 01:47:00 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146\",\r\n \"name\": \"cdnResourceGroup6146\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520\",\r\n \"name\": \"cdnResourceGroup7520\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "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": { "x-ms-client-request-id": [ - "f8c014a5-c6a6-4e91-9fa1-4f0985c13f42" + "dd85643e-db95-418d-9a35-b0438b630d72" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "d70d1608-6604-4ca0-b5ba-4e5f782684bd" + "05741d9b-5ca3-4e9b-97a9-01eab72dcb56" ], "x-ms-client-request-id": [ - "f8c014a5-c6a6-4e91-9fa1-4f0985c13f42" + "dd85643e-db95-418d-9a35-b0438b630d72" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/d152e1cd-92c1-4927-99e5-855d69d1c22c?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/5dd451bf-deab-46f4-8c9f-073f9eb45d12?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "28018b6a-8f4a-4222-ae1b-9d514749dd26" + "9b800acb-a477-4388-87b4-2dcb5c6b60f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225313Z:28018b6a-8f4a-4222-ae1b-9d514749dd26" + "WESTUS:20201027T014704Z:9b800acb-a477-4388-87b4-2dcb5c6b60f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:12 GMT" + "Tue, 27 Oct 2020 01:47:03 GMT" ], "Content-Length": [ "400" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile2212\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile1615\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/d152e1cd-92c1-4927-99e5-855d69d1c22c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDE1MmUxY2QtOTJjMS00OTI3LTk5ZTUtODU1ZDY5ZDFjMjJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/5dd451bf-deab-46f4-8c9f-073f9eb45d12?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWRkNDUxYmYtZGVhYi00NmY0LThjOWYtMDczZjllYjQ1ZDEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "c06348fc-3db2-4814-9068-b3cff34f27fa" + "c0ba4f8e-6c3a-4fc6-85c4-09a48d7dde4a" ], "x-ms-client-request-id": [ - "8cdaef57-817b-4657-b103-f49d18a95dee" + "92475e26-da12-4796-9c0b-ae79e14d220d" ], "OData-Version": [ "4.0" @@ -198,85 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "acf9b5e4-016f-44e1-82c1-89d00349b26b" + "585a8d74-4de0-4839-8699-944216eeb7b6" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225323Z:acf9b5e4-016f-44e1-82c1-89d00349b26b" + "WESTUS:20201027T014714Z:585a8d74-4de0-4839-8699-944216eeb7b6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:22 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/d152e1cd-92c1-4927-99e5-855d69d1c22c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDE1MmUxY2QtOTJjMS00OTI3LTk5ZTUtODU1ZDY5ZDFjMjJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "afc0b27c-4077-4970-b2b7-0e0316683b37" - ], - "x-ms-client-request-id": [ - "90dd4591-9f12-4b63-8958-c8250fa8f1a1" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-correlation-request-id": [ - "d5dc0e0c-759c-46d4-aaeb-536825c45020" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T225333Z:d5dc0e0c-759c-46d4-aaeb-536825c45020" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:53:33 GMT" + "Tue, 27 Oct 2020 01:47:13 GMT" ], "Content-Length": [ "77" @@ -292,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "b78a3525-0abe-4842-99cf-d7f63224bd82" + "f79b28fb-3a9a-4add-a960-d538dadef8f3" ], "x-ms-client-request-id": [ - "80844377-4e98-4ff7-ba86-0f5213f87349" + "1b4cfeb0-aec9-42df-9385-a05e10f96fc0" ], "OData-Version": [ "4.0" @@ -336,16 +267,16 @@ "49" ], "x-ms-correlation-request-id": [ - "9dfd218f-f18f-4548-a69f-686562da2c25" + "606d020b-ec09-40ef-aca7-e193cec67c57" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225334Z:9dfd218f-f18f-4548-a69f-686562da2c25" + "WESTUS:20201027T014715Z:606d020b-ec09-40ef-aca7-e193cec67c57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:34 GMT" + "Tue, 27 Oct 2020 01:47:14 GMT" ], "Content-Length": [ "399" @@ -357,26 +288,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile2212\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile1615\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/originGroups/origingroup1\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probePath\": \"/healthz\",\r\n \"probeRequestType\": \"HEAD\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeIntervalInSeconds\": 60\r\n },\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probePath\": \"/healthz\",\r\n \"probeRequestType\": \"HEAD\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeIntervalInSeconds\": 60\r\n },\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2c5906a3-3477-401d-bc19-83ef6c7933b4" + "e0187d7c-975c-4ee3-8745-f71733369d82" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -396,13 +327,13 @@ "10" ], "x-ms-request-id": [ - "d5f0a412-551b-44ff-8e0e-2251b12caac6" + "b564ef02-9b7d-4a8a-982e-2a8d1d616154" ], "x-ms-client-request-id": [ - "2c5906a3-3477-401d-bc19-83ef6c7933b4" + "e0187d7c-975c-4ee3-8745-f71733369d82" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/669b0d8a-93e4-485c-90e2-e3be9e194dde?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -423,16 +354,16 @@ "99" ], "x-ms-correlation-request-id": [ - "608e3b15-8215-44b1-a0b1-3246e479bb58" + "826cad11-83bd-414c-95a1-666d432ea0b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225339Z:608e3b15-8215-44b1-a0b1-3246e479bb58" + "WESTUS:20201027T014720Z:826cad11-83bd-414c-95a1-666d432ea0b5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:38 GMT" + "Tue, 27 Oct 2020 01:47:19 GMT" ], "Content-Length": [ "2173" @@ -444,89 +375,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1137\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1137.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/669b0d8a-93e4-485c-90e2-e3be9e194dde?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjY5YjBkOGEtOTNlNC00ODVjLTkwZTItZTNiZTllMTk0ZGRlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "96ecdf79-9dae-4401-80a4-821e4a7f9f5e" - ], - "x-ms-client-request-id": [ - "766af4fa-f079-4184-a2bd-a97de032ed37" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "94c8ea02-2947-4681-8344-00af04a20aca" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T225349Z:94c8ea02-2947-4681-8344-00af04a20aca" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:53:48 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/669b0d8a-93e4-485c-90e2-e3be9e194dde?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjY5YjBkOGEtOTNlNC00ODVjLTkwZTItZTNiZTllMTk0ZGRlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "c7324e5b-4661-42df-b6a7-e03dc26fe8e5" + "de032bb2-6aaa-4a7f-98eb-59601ce5e852" ], "x-ms-client-request-id": [ - "0ccf847a-074c-4daf-a5a4-7924abbce8cd" + "685424e1-0809-4559-896c-717313c514b1" ], "OData-Version": [ "4.0" @@ -558,19 +420,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-correlation-request-id": [ - "a21a9a9b-e83d-4ad2-8dbb-e584206b787f" + "56044ef2-d4b3-41d1-8190-06112ca0661c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225359Z:a21a9a9b-e83d-4ad2-8dbb-e584206b787f" + "WESTUS:20201027T014730Z:56044ef2-d4b3-41d1-8190-06112ca0661c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:53:58 GMT" + "Tue, 27 Oct 2020 01:47:30 GMT" ], "Content-Length": [ "78" @@ -586,16 +448,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/669b0d8a-93e4-485c-90e2-e3be9e194dde?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjY5YjBkOGEtOTNlNC00ODVjLTkwZTItZTNiZTllMTk0ZGRlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +468,10 @@ "no-cache" ], "x-ms-request-id": [ - "7fb53a9a-486d-4c1d-af50-e8f592ac6227" + "b3b71a05-8d54-4035-9357-db25c22c306c" ], "x-ms-client-request-id": [ - "3721128b-923a-4a7f-9e84-3d1a751c2dde" + "4d8fbfb2-7af3-41d0-a373-7477629d2ccd" ], "OData-Version": [ "4.0" @@ -627,19 +489,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-correlation-request-id": [ - "7c28e3dd-d60d-4099-8142-0d540cbdbe6d" + "186580f1-d9e8-4f74-90ad-07bd690fbc8e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225410Z:7c28e3dd-d60d-4099-8142-0d540cbdbe6d" + "WESTUS:20201027T014740Z:186580f1-d9e8-4f74-90ad-07bd690fbc8e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:09 GMT" + "Tue, 27 Oct 2020 01:47:40 GMT" ], "Content-Length": [ "78" @@ -655,16 +517,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/669b0d8a-93e4-485c-90e2-e3be9e194dde?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjY5YjBkOGEtOTNlNC00ODVjLTkwZTItZTNiZTllMTk0ZGRlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "a6c59bfb-4311-49b0-b80c-015c5e91f60b" + "b80e68bf-bf17-4f3b-9214-46d8cbf13b42" ], "x-ms-client-request-id": [ - "e912ee20-0bc1-476f-b603-afaf74df66d5" + "8d6db104-c511-4a6a-8f3a-f46b3a5a1957" ], "OData-Version": [ "4.0" @@ -696,19 +558,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-correlation-request-id": [ - "3ca90259-428d-4215-aa81-36d67c826247" + "6c099fb0-0d6c-4f76-9186-b15713f08d66" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225420Z:3ca90259-428d-4215-aa81-36d67c826247" + "WESTUS:20201027T014751Z:6c099fb0-0d6c-4f76-9186-b15713f08d66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:20 GMT" + "Tue, 27 Oct 2020 01:47:51 GMT" ], "Content-Length": [ "77" @@ -724,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -744,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "6707e3f4-5b43-4732-bfcb-c0b5f1060ccb" + "9cc61d6d-8d92-4465-8c6f-fb16ea9e31a9" ], "x-ms-client-request-id": [ - "191e5394-b85b-4cd9-bb29-804748ff5ef7" + "7115140b-9961-4925-9346-afbce04aa664" ], "OData-Version": [ "4.0" @@ -768,16 +630,16 @@ "49" ], "x-ms-correlation-request-id": [ - "019a964c-8dbb-40f4-90a4-1cdad3af5862" + "64101995-cafb-4410-ba1c-2ddb900138b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225421Z:019a964c-8dbb-40f4-90a4-1cdad3af5862" + "WESTUS:20201027T014752Z:64101995-cafb-4410-ba1c-2ddb900138b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:21 GMT" + "Tue, 27 Oct 2020 01:47:52 GMT" ], "Content-Length": [ "2173" @@ -789,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1137\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1137.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "674a2125-5c38-4eed-b05a-3f53f2707654" + "faabf232-b85b-4930-ae3f-dcbcdf0a5d1e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -825,19 +687,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/89fb485c-7d87-46bc-bac4-69f3abaa222f/profileresults/profile2212/endpointresults/endpoint1137/originresults/origin1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028/profileresults/profile1615/endpointresults/endpoint3897/originresults/origin1?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "4d625841-0da1-42ca-9bef-d0d7b30d2298" + "05ba593e-aaeb-4c22-b0df-28c3c578f9df" ], "x-ms-client-request-id": [ - "674a2125-5c38-4eed-b05a-3f53f2707654" + "faabf232-b85b-4930-ae3f-dcbcdf0a5d1e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/89fb485c-7d87-46bc-bac4-69f3abaa222f?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -858,16 +720,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "dc1c2595-e5ee-4c2b-9617-c27d3fd5aa0e" + "ec68eab6-59c8-4459-8d45-11be77380365" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225423Z:dc1c2595-e5ee-4c2b-9617-c27d3fd5aa0e" + "WESTUS:20201027T014755Z:ec68eab6-59c8-4459-8d45-11be77380365" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:23 GMT" + "Tue, 27 Oct 2020 01:47:54 GMT" ], "Content-Length": [ "764" @@ -879,26 +741,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"invalid!Hostname&\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf47e67e-4029-4e14-b2b8-b26ba67c32ab" + "1c6cc960-fbc7-43fc-bc58-31c53e245e12" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -915,10 +777,10 @@ "no-cache" ], "x-ms-request-id": [ - "c12a2fac-c524-4506-ada9-dc96597e06f7" + "0b33e497-9042-4669-a96d-70436fe6f3f0" ], "x-ms-client-request-id": [ - "cf47e67e-4029-4e14-b2b8-b26ba67c32ab" + "1c6cc960-fbc7-43fc-bc58-31c53e245e12" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -936,16 +798,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "e6a417f0-9c14-43ea-b5f5-d2279226cb32" + "22bb34e5-8444-45b9-832c-72f86eb15876" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225445Z:e6a417f0-9c14-43ea-b5f5-d2279226cb32" + "WESTUS:20201027T014816Z:22bb34e5-8444-45b9-832c-72f86eb15876" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:44 GMT" + "Tue, 27 Oct 2020 01:48:16 GMT" ], "Content-Length": [ "174" @@ -964,22 +826,22 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d446706e-70b2-4ebc-b31d-da4bd24016ab" + "2604d6b9-38c4-4981-ba92-5befc2c67b75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -996,19 +858,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/5d7fd35c-c5fd-48a8-9db6-a71dbbcc1e7a/profileresults/profile2212/endpointresults/endpoint1137/originresults/origin1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339/profileresults/profile1615/endpointresults/endpoint3897/originresults/origin1?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "7c8443be-e164-4f45-9f9f-9b132d3e49d7" + "312f77fd-4bb2-4821-826b-3ac3b04ce9c0" ], "x-ms-client-request-id": [ - "d446706e-70b2-4ebc-b31d-da4bd24016ab" + "2604d6b9-38c4-4981-ba92-5befc2c67b75" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/5d7fd35c-c5fd-48a8-9db6-a71dbbcc1e7a?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1029,16 +891,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "cde21edc-78b8-4d4c-b3a4-509c938d4293" + "31d026bf-7aa0-481a-903f-b7a57eb321c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225459Z:cde21edc-78b8-4d4c-b3a4-509c938d4293" + "WESTUS:20201027T014842Z:31d026bf-7aa0-481a-903f-b7a57eb321c2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:59 GMT" + "Tue, 27 Oct 2020 01:48:41 GMT" ], "Content-Length": [ "765" @@ -1050,26 +912,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"httpPort\": 99999,\r\n \"httpsPort\": -2000\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c791c7fb-4459-4228-b4d6-608307a7c506" + "32ade449-c571-4f94-bb10-368967cef92c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1086,10 +948,10 @@ "no-cache" ], "x-ms-request-id": [ - "a9780b89-8a19-4943-bbcc-f258423b8031" + "6c58d18b-3dae-45e4-ba3f-ab9d5634f413" ], "x-ms-client-request-id": [ - "c791c7fb-4459-4228-b4d6-608307a7c506" + "32ade449-c571-4f94-bb10-368967cef92c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1107,16 +969,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "31339f89-0204-4639-8052-49bf0f7d8f21" + "ad42e193-d047-471a-b8f3-4eb5c7f015d8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225511Z:31339f89-0204-4639-8052-49bf0f7d8f21" + "WESTUS:20201027T014903Z:ad42e193-d047-471a-b8f3-4eb5c7f015d8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:11 GMT" + "Tue, 27 Oct 2020 01:49:03 GMT" ], "Content-Length": [ "270" @@ -1135,16 +997,16 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/89fb485c-7d87-46bc-bac4-69f3abaa222f?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODlmYjQ4NWMtN2Q4Ny00NmJjLWJhYzQtNjlmM2FiYWEyMjJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzgwOWE3MzQtYzBhOC00MmVlLWFlMjMtZTFjMWYwNzkzMDI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1155,10 +1017,10 @@ "no-cache" ], "x-ms-request-id": [ - "0dae0114-dbcd-402e-8afd-469027ffcdcc" + "9916585f-2bb1-43a9-aef2-ccd249cb5eb8" ], "x-ms-client-request-id": [ - "d2a198e9-6c66-41d6-bfa3-aa6cafd30ef7" + "29d0141d-f66c-408b-ba69-61d1252bcecd" ], "OData-Version": [ "4.0" @@ -1176,19 +1038,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11995" ], "x-ms-correlation-request-id": [ - "18268898-cd76-4209-ad20-a2b10dedd92b" + "ca2bf153-85ce-4b8e-a9f4-d0c78a1f0b83" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225433Z:18268898-cd76-4209-ad20-a2b10dedd92b" + "WESTUS:20201027T014805Z:ca2bf153-85ce-4b8e-a9f4-d0c78a1f0b83" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:33 GMT" + "Tue, 27 Oct 2020 01:48:05 GMT" ], "Content-Length": [ "78" @@ -1204,16 +1066,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/89fb485c-7d87-46bc-bac4-69f3abaa222f?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODlmYjQ4NWMtN2Q4Ny00NmJjLWJhYzQtNjlmM2FiYWEyMjJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzgwOWE3MzQtYzBhOC00MmVlLWFlMjMtZTFjMWYwNzkzMDI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1224,10 +1086,10 @@ "no-cache" ], "x-ms-request-id": [ - "69c85459-8746-4276-9b6e-5461918d6931" + "0324b034-4ae7-40e6-9599-12ea36f5e9d9" ], "x-ms-client-request-id": [ - "759ceec8-4ad5-47cd-90f3-ae2f39075e16" + "41a910fe-6541-4b76-8ef8-df6b2082f00b" ], "OData-Version": [ "4.0" @@ -1245,19 +1107,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11994" ], "x-ms-correlation-request-id": [ - "1365789e-ba3d-47c7-b844-1190731ea5bb" + "3acd5ab2-0743-471c-a9f7-8447a0de948a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225443Z:1365789e-ba3d-47c7-b844-1190731ea5bb" + "WESTUS:20201027T014815Z:3acd5ab2-0743-471c-a9f7-8447a0de948a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:43 GMT" + "Tue, 27 Oct 2020 01:48:15 GMT" ], "Content-Length": [ "77" @@ -1273,16 +1135,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1293,10 +1155,10 @@ "no-cache" ], "x-ms-request-id": [ - "463044eb-4614-49ee-9f31-b51fe01144ed" + "ffc72390-0d8f-4005-9385-50414d73d2f3" ], "x-ms-client-request-id": [ - "a275534e-85a7-459b-a58e-3a27925adfae" + "24ff58a4-b9a3-4952-930d-12d3016bcbb3" ], "OData-Version": [ "4.0" @@ -1314,19 +1176,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11993" ], "x-ms-correlation-request-id": [ - "e4a835dc-bbc5-407b-8f74-b948e8f112cb" + "ab77967a-efdc-4430-b5c7-2bf055229c68" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225444Z:e4a835dc-bbc5-407b-8f74-b948e8f112cb" + "WESTUS:20201027T014816Z:ab77967a-efdc-4430-b5c7-2bf055229c68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:44 GMT" + "Tue, 27 Oct 2020 01:48:16 GMT" ], "Content-Length": [ "764" @@ -1338,20 +1200,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1362,10 +1224,10 @@ "no-cache" ], "x-ms-request-id": [ - "e00e4d7f-65f0-4afd-b50a-a030158c5593" + "3a770adb-b8e2-4ca0-9d28-4c29bc43f86c" ], "x-ms-client-request-id": [ - "3b9bc8ed-e54d-427b-864f-0703ec3ac175" + "60d257a7-539c-415a-bfcb-c456c51276e4" ], "OData-Version": [ "4.0" @@ -1386,16 +1248,16 @@ "11987" ], "x-ms-correlation-request-id": [ - "31739942-e7d3-43e1-9f38-b20232b964df" + "76d2bc45-4c8d-4a52-9c11-957721fbe3f5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225510Z:31739942-e7d3-43e1-9f38-b20232b964df" + "WESTUS:20201027T014903Z:76d2bc45-4c8d-4a52-9c11-957721fbe3f5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:10 GMT" + "Tue, 27 Oct 2020 01:49:02 GMT" ], "Content-Length": [ "765" @@ -1407,26 +1269,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/stop?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cy9lbmRwb2ludDExMzcvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/stop?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "482665ec-deea-41e5-947c-c37585542912" + "0a58cd46-08bb-4fe9-bc9a-7ecc7d8b6219" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1437,19 +1299,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/fef29a50-121b-4c6b-a08d-7ed8a78d9b00/profileresults/profile2212/endpointresults/endpoint1137?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "c40c0129-2b9b-4c96-a986-8dde0ae968ae" + "82bd0058-ff4d-446f-af9e-d38275d9fb66" ], "x-ms-client-request-id": [ - "482665ec-deea-41e5-947c-c37585542912" + "0a58cd46-08bb-4fe9-bc9a-7ecc7d8b6219" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/fef29a50-121b-4c6b-a08d-7ed8a78d9b00?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1470,16 +1332,16 @@ "49" ], "x-ms-correlation-request-id": [ - "537d3107-6078-4682-b28a-ca2b1c219c17" + "75adf027-72bf-43ad-bde2-028c74ac8cbd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225446Z:537d3107-6078-4682-b28a-ca2b1c219c17" + "WESTUS:20201027T014818Z:75adf027-72bf-43ad-bde2-028c74ac8cbd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:46 GMT" + "Tue, 27 Oct 2020 01:48:18 GMT" ], "Content-Length": [ "1830" @@ -1491,20 +1353,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint1137.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint3897.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/fef29a50-121b-4c6b-a08d-7ed8a78d9b00?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmVmMjlhNTAtMTIxYi00YzZiLWEwOGQtN2VkOGE3OGQ5YjAwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1515,10 +1377,10 @@ "no-cache" ], "x-ms-request-id": [ - "b2b9031f-7047-4f44-b13c-ef8791759297" + "5d0288ed-68e7-4bd5-971d-dfbd282c0418" ], "x-ms-client-request-id": [ - "b32f7dc2-4d62-49d3-b5b4-3fe5a7faff83" + "36937000-072b-4feb-b6ce-1780d101e010" ], "OData-Version": [ "4.0" @@ -1536,19 +1398,88 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11992" + ], + "x-ms-correlation-request-id": [ + "d794c883-d019-4347-a84f-68513f9b0b82" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T014829Z:d794c883-d019-4347-a84f-68513f9b0b82" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:48:28 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "37eab913-6bef-4bd8-b34d-2e1df3c53eec" + ], + "x-ms-client-request-id": [ + "74033c4f-7e34-42ab-bee4-5ca9950d15b7" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], "x-ms-correlation-request-id": [ - "e5d0243e-129d-4bbc-8dc0-8f4e09b6e81d" + "a841b3e3-d913-4387-8892-f0315aea9550" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225457Z:e5d0243e-129d-4bbc-8dc0-8f4e09b6e81d" + "WESTUS:20201027T014839Z:a841b3e3-d913-4387-8892-f0315aea9550" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:56 GMT" + "Tue, 27 Oct 2020 01:48:38 GMT" ], "Content-Length": [ "77" @@ -1564,16 +1495,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/fef29a50-121b-4c6b-a08d-7ed8a78d9b00/profileresults/profile2212/endpointresults/endpoint1137?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZmVmMjlhNTAtMTIxYi00YzZiLWEwOGQtN2VkOGE3OGQ5YjAwL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUyMjEyL2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDExMzc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1584,10 +1515,10 @@ "no-cache" ], "x-ms-request-id": [ - "42e7d447-e190-4eda-a456-58bf7913a1b3" + "840a1048-fd37-4f56-9da0-6976a0771a88" ], "x-ms-client-request-id": [ - "efd5853e-a9be-4fd8-ac4b-c3e21d0f1270" + "394e4e80-780f-40d9-b448-fe9e2e6535ec" ], "OData-Version": [ "4.0" @@ -1605,19 +1536,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11990" ], "x-ms-correlation-request-id": [ - "dfb6c99b-8c99-4722-b089-3395f867259c" + "09ef80b2-80aa-4a4b-b2d4-c1f42a8e439e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225458Z:dfb6c99b-8c99-4722-b089-3395f867259c" + "WESTUS:20201027T014840Z:09ef80b2-80aa-4a4b-b2d4-c1f42a8e439e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:54:57 GMT" + "Tue, 27 Oct 2020 01:48:39 GMT" ], "Content-Length": [ "2272" @@ -1629,20 +1560,89 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint1137\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/fef29a50-121b-4c6b-a08d-7ed8a78d9b00/profileresults/profile2212/endpointresults/endpoint1137\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1137.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/profiles/profile2212/endpoints/endpoint1137/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjg5NmE1MjEtZDVmNC00NDM5LTkyOGEtYjkyMjNmZmU3MzM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "c18b5e73-cb69-463c-85a0-c4ff73e9a299" + ], + "x-ms-client-request-id": [ + "a383c868-e4ab-41dc-ba2d-a0e1e6bc01f5" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11989" + ], + "x-ms-correlation-request-id": [ + "8b273024-c458-492a-a26a-3ad86d8802ee" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T014852Z:8b273024-c458-492a-a26a-3ad86d8802ee" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:48:51 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146/providers/Microsoft.Cdn/operationresults/5d7fd35c-c5fd-48a8-9db6-a71dbbcc1e7a?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWQ3ZmQzNWMtYzVmZC00OGE4LTlkYjYtYTcxZGJiY2MxZTdhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjg5NmE1MjEtZDVmNC00NDM5LTkyOGEtYjkyMjNmZmU3MzM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1653,10 +1653,10 @@ "no-cache" ], "x-ms-request-id": [ - "fb9e0294-7c1f-4835-9cb1-97c2ffe7e253" + "54dd3b46-9ab1-40d0-962e-02d3480ae5b9" ], "x-ms-client-request-id": [ - "e053aa34-1dea-408b-a63e-10cd88a599af" + "712d3730-ec82-4e10-aba0-668f066dca5e" ], "OData-Version": [ "4.0" @@ -1677,16 +1677,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "5d3d076d-c447-4b76-8868-a0959b07e058" + "8e2ff93c-34bd-4010-ab10-a4a848aca65b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225510Z:5d3d076d-c447-4b76-8868-a0959b07e058" + "WESTUS:20201027T014902Z:8e2ff93c-34bd-4010-ab10-a4a848aca65b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:09 GMT" + "Tue, 27 Oct 2020 01:49:02 GMT" ], "Content-Length": [ "77" @@ -1702,21 +1702,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6146?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MTQ2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ab28fc16-8074-4334-a218-3434caa088de" + "0557b8ed-7360-49bc-a60c-95538f432121" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1728,7 +1728,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1737,13 +1737,13 @@ "14999" ], "x-ms-request-id": [ - "9475628d-d9ec-4df1-be0d-d3003e0d9325" + "5702a608-1aea-4c4c-a324-aa06e2542cdb" ], "x-ms-correlation-request-id": [ - "9475628d-d9ec-4df1-be0d-d3003e0d9325" + "5702a608-1aea-4c4c-a324-aa06e2542cdb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225511Z:9475628d-d9ec-4df1-be0d-d3003e0d9325" + "WESTUS:20201027T014904Z:5702a608-1aea-4c4c-a324-aa06e2542cdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,7 +1752,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:11 GMT" + "Tue, 27 Oct 2020 01:49:03 GMT" ], "Expires": [ "-1" @@ -1765,15 +1765,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1785,7 +1785,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1794,13 +1794,13 @@ "11999" ], "x-ms-request-id": [ - "8c855009-7a76-4f71-869c-be4f4700b9a8" + "7cba127f-4141-4a26-aa35-967426434a76" ], "x-ms-correlation-request-id": [ - "8c855009-7a76-4f71-869c-be4f4700b9a8" + "7cba127f-4141-4a26-aa35-967426434a76" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225526Z:8c855009-7a76-4f71-869c-be4f4700b9a8" + "WESTUS:20201027T014919Z:7cba127f-4141-4a26-aa35-967426434a76" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1809,7 +1809,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:26 GMT" + "Tue, 27 Oct 2020 01:49:18 GMT" ], "Expires": [ "-1" @@ -1822,15 +1822,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1842,7 +1842,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1851,13 +1851,13 @@ "11998" ], "x-ms-request-id": [ - "13281a70-08ca-4be6-9701-7f9b694c0eac" + "388f7def-a79e-4378-93cb-d605cc1dd0b4" ], "x-ms-correlation-request-id": [ - "13281a70-08ca-4be6-9701-7f9b694c0eac" + "388f7def-a79e-4378-93cb-d605cc1dd0b4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225541Z:13281a70-08ca-4be6-9701-7f9b694c0eac" + "WESTUS:20201027T014934Z:388f7def-a79e-4378-93cb-d605cc1dd0b4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,7 +1866,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:41 GMT" + "Tue, 27 Oct 2020 01:49:33 GMT" ], "Expires": [ "-1" @@ -1879,15 +1879,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1899,7 +1899,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1908,13 +1908,13 @@ "11997" ], "x-ms-request-id": [ - "e4e64274-07f0-4cd2-90b4-ec684b9adcca" + "0bdd7f1b-473d-49c7-a508-cddafd6570db" ], "x-ms-correlation-request-id": [ - "e4e64274-07f0-4cd2-90b4-ec684b9adcca" + "0bdd7f1b-473d-49c7-a508-cddafd6570db" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225556Z:e4e64274-07f0-4cd2-90b4-ec684b9adcca" + "WESTUS:20201027T014949Z:0bdd7f1b-473d-49c7-a508-cddafd6570db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,7 +1923,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:55:56 GMT" + "Tue, 27 Oct 2020 01:49:48 GMT" ], "Expires": [ "-1" @@ -1936,15 +1936,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1956,7 +1956,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1965,13 +1965,13 @@ "11996" ], "x-ms-request-id": [ - "45e0c32b-7fbc-46bb-a5b1-bc8fe80aa014" + "7974833d-76d3-4334-a852-333f151eb46c" ], "x-ms-correlation-request-id": [ - "45e0c32b-7fbc-46bb-a5b1-bc8fe80aa014" + "7974833d-76d3-4334-a852-333f151eb46c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225611Z:45e0c32b-7fbc-46bb-a5b1-bc8fe80aa014" + "WESTUS:20201027T015004Z:7974833d-76d3-4334-a852-333f151eb46c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,7 +1980,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:56:11 GMT" + "Tue, 27 Oct 2020 01:50:03 GMT" ], "Expires": [ "-1" @@ -1993,15 +1993,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2013,7 +2013,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2022,13 +2022,13 @@ "11995" ], "x-ms-request-id": [ - "e04c9b90-c12a-4348-b217-982e0bbdd0f8" + "6aa48f9e-c823-4987-9f02-3a5de6c3b32f" ], "x-ms-correlation-request-id": [ - "e04c9b90-c12a-4348-b217-982e0bbdd0f8" + "6aa48f9e-c823-4987-9f02-3a5de6c3b32f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225627Z:e04c9b90-c12a-4348-b217-982e0bbdd0f8" + "WESTUS:20201027T015019Z:6aa48f9e-c823-4987-9f02-3a5de6c3b32f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2037,7 +2037,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:56:26 GMT" + "Tue, 27 Oct 2020 01:50:18 GMT" ], "Expires": [ "-1" @@ -2050,15 +2050,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2070,7 +2070,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2079,13 +2079,13 @@ "11994" ], "x-ms-request-id": [ - "7cf75f25-1aba-4e35-b8a2-6b6a09d7130e" + "8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" ], "x-ms-correlation-request-id": [ - "7cf75f25-1aba-4e35-b8a2-6b6a09d7130e" + "8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225642Z:7cf75f25-1aba-4e35-b8a2-6b6a09d7130e" + "WESTUS:20201027T015034Z:8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,7 +2094,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:56:42 GMT" + "Tue, 27 Oct 2020 01:50:33 GMT" ], "Expires": [ "-1" @@ -2107,15 +2107,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2127,7 +2127,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2136,13 +2136,13 @@ "11993" ], "x-ms-request-id": [ - "32e6ee06-bd99-43ab-aa96-bfa0fb957e19" + "c1aa6513-1c0d-44a4-8123-fa5fa5e71183" ], "x-ms-correlation-request-id": [ - "32e6ee06-bd99-43ab-aa96-bfa0fb957e19" + "c1aa6513-1c0d-44a4-8123-fa5fa5e71183" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225657Z:32e6ee06-bd99-43ab-aa96-bfa0fb957e19" + "WESTUS:20201027T015049Z:c1aa6513-1c0d-44a4-8123-fa5fa5e71183" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,7 +2151,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:56:56 GMT" + "Tue, 27 Oct 2020 01:50:48 GMT" ], "Expires": [ "-1" @@ -2164,15 +2164,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2184,7 +2184,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2193,13 +2193,13 @@ "11992" ], "x-ms-request-id": [ - "257d600c-cf4c-4acd-947f-ad81fa617454" + "09f3e3c7-6296-4465-a73c-b11b6f8313ea" ], "x-ms-correlation-request-id": [ - "257d600c-cf4c-4acd-947f-ad81fa617454" + "09f3e3c7-6296-4465-a73c-b11b6f8313ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225712Z:257d600c-cf4c-4acd-947f-ad81fa617454" + "WESTUS:20201027T015104Z:09f3e3c7-6296-4465-a73c-b11b6f8313ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:57:11 GMT" + "Tue, 27 Oct 2020 01:51:04 GMT" ], "Expires": [ "-1" @@ -2221,15 +2221,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2241,7 +2241,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2250,13 +2250,13 @@ "11991" ], "x-ms-request-id": [ - "bbc41839-f9ac-4514-9909-158d49f0e060" + "6f3550fc-a6d7-40f4-bf89-9787dab1f382" ], "x-ms-correlation-request-id": [ - "bbc41839-f9ac-4514-9909-158d49f0e060" + "6f3550fc-a6d7-40f4-bf89-9787dab1f382" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225727Z:bbc41839-f9ac-4514-9909-158d49f0e060" + "WESTUS:20201027T015119Z:6f3550fc-a6d7-40f4-bf89-9787dab1f382" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,7 +2265,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:57:26 GMT" + "Tue, 27 Oct 2020 01:51:19 GMT" ], "Expires": [ "-1" @@ -2278,15 +2278,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2298,7 +2298,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2307,13 +2307,13 @@ "11990" ], "x-ms-request-id": [ - "15e74645-7040-4038-a41a-0b08cc95e896" + "2f8d35f4-23e1-43d6-9f6e-2032f78432e7" ], "x-ms-correlation-request-id": [ - "15e74645-7040-4038-a41a-0b08cc95e896" + "2f8d35f4-23e1-43d6-9f6e-2032f78432e7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225742Z:15e74645-7040-4038-a41a-0b08cc95e896" + "WESTUS:20201027T015134Z:2f8d35f4-23e1-43d6-9f6e-2032f78432e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2322,7 +2322,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:57:41 GMT" + "Tue, 27 Oct 2020 01:51:34 GMT" ], "Expires": [ "-1" @@ -2335,15 +2335,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2358,13 +2358,13 @@ "11989" ], "x-ms-request-id": [ - "15327a84-5f1b-437a-aac6-b430ff2a86ea" + "0ffa0500-bec4-4a61-8a08-3c135093ceea" ], "x-ms-correlation-request-id": [ - "15327a84-5f1b-437a-aac6-b430ff2a86ea" + "0ffa0500-bec4-4a61-8a08-3c135093ceea" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225757Z:15327a84-5f1b-437a-aac6-b430ff2a86ea" + "WESTUS:20201027T015149Z:0ffa0500-bec4-4a61-8a08-3c135093ceea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2373,7 +2373,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:57:56 GMT" + "Tue, 27 Oct 2020 01:51:49 GMT" ], "Expires": [ "-1" @@ -2386,15 +2386,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjE0Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOakUwTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2409,13 +2409,13 @@ "11988" ], "x-ms-request-id": [ - "f4245476-04bb-4a55-a00c-156d5bca0142" + "8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" ], "x-ms-correlation-request-id": [ - "f4245476-04bb-4a55-a00c-156d5bca0142" + "8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225757Z:f4245476-04bb-4a55-a00c-156d5bca0142" + "WESTUS:20201027T015149Z:8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,7 +2424,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:57:56 GMT" + "Tue, 27 Oct 2020 01:51:49 GMT" ], "Expires": [ "-1" @@ -2439,11 +2439,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup6146" + "cdnResourceGroup7520" ], "OriginUpdateTest": [ - "profile2212", - "endpoint1137" + "profile1615", + "endpoint3897" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GenerateSsoUriTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GenerateSsoUriTest.json index c826ff3ae96f8..963a6eed3e8c8 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GenerateSsoUriTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GenerateSsoUriTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "ba2704df-f838-473b-9f3d-5fee7f8cb493" + "deb4f376-65f8-4517-8c75-63ae9c9918d9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -33,16 +33,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1198" ], "x-ms-request-id": [ - "31b69232-c32f-442b-b902-a3c98f8d518b" + "ba35f27e-ccac-41ae-9795-daaa22512e69" ], "x-ms-correlation-request-id": [ - "31b69232-c32f-442b-b902-a3c98f8d518b" + "ba35f27e-ccac-41ae-9795-daaa22512e69" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231202Z:31b69232-c32f-442b-b902-a3c98f8d518b" + "WESTUS:20201027T024653Z:ba35f27e-ccac-41ae-9795-daaa22512e69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:01 GMT" + "Tue, 27 Oct 2020 02:46:52 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937\",\r\n \"name\": \"cdnResourceGroup8937\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802\",\r\n \"name\": \"cdnResourceGroup1802\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile3286?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjg2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile9998?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5OTk4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "9cb01551-8faf-4ca1-ab34-896a47ee8309" + "12ad57fa-a202-47de-af9d-afe54a41ae50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "275a2c57-0865-4f6b-aedc-3e3b103208ea" + "e4fef55d-702d-4cb7-9d1f-cd950c5b2272" ], "x-ms-client-request-id": [ - "9cb01551-8faf-4ca1-ab34-896a47ee8309" + "12ad57fa-a202-47de-af9d-afe54a41ae50" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/operationresults/95e15b71-a2e3-427a-a354-c7bfe5b15e13?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/operationresults/d340288b-ed6e-42ce-85b0-731213456b3d?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "d8cb1d4a-a4ff-46cc-9f38-c82994d9cb79" + "f4536f56-bac7-4647-9d85-32d56335af10" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231208Z:d8cb1d4a-a4ff-46cc-9f38-c82994d9cb79" + "WESTUS:20201027T024659Z:f4536f56-bac7-4647-9d85-32d56335af10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:08 GMT" + "Tue, 27 Oct 2020 02:46:58 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3286\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile3286\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9998\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile9998\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/operationresults/95e15b71-a2e3-427a-a354-c7bfe5b15e13?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTVlMTViNzEtYTJlMy00MjdhLWEzNTQtYzdiZmU1YjE1ZTEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/operationresults/d340288b-ed6e-42ce-85b0-731213456b3d?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDM0MDI4OGItZWQ2ZS00MmNlLTg1YjAtNzMxMjEzNDU2YjNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "cd83b01e-0654-4721-a236-153f23fe0104" + "76ccaabe-4f2a-474f-a005-5ce2eba026ca" ], "x-ms-client-request-id": [ - "fe2300e4-0d77-4b19-9887-af7e1608c1a2" + "dd2857e2-26b0-4cba-a096-ce707c3e8a74" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11987" ], "x-ms-correlation-request-id": [ - "aeb04869-5cf0-42e2-91c0-7e1b5a09eec4" + "66648bc1-6126-4936-b1ae-5f782158edd1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231219Z:aeb04869-5cf0-42e2-91c0-7e1b5a09eec4" + "WESTUS:20201027T024709Z:66648bc1-6126-4936-b1ae-5f782158edd1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:19 GMT" + "Tue, 27 Oct 2020 02:47:09 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/operationresults/95e15b71-a2e3-427a-a354-c7bfe5b15e13?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTVlMTViNzEtYTJlMy00MjdhLWEzNTQtYzdiZmU1YjE1ZTEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/operationresults/d340288b-ed6e-42ce-85b0-731213456b3d?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDM0MDI4OGItZWQ2ZS00MmNlLTg1YjAtNzMxMjEzNDU2YjNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "3247b424-9c27-4f37-b4a1-398bd5f5424b" + "25b736ca-151f-413d-a468-79f634d9ac88" ], "x-ms-client-request-id": [ - "57151ed9-296d-44a6-a1dd-485255e45803" + "cdade7af-c5aa-4ada-bb19-1dd9c802ccaf" ], "OData-Version": [ "4.0" @@ -264,19 +264,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-correlation-request-id": [ - "e4ef4c46-e84e-4249-b406-884c4d717dbc" + "5ceb157e-69e1-471c-8bf5-1fa6e355691b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231229Z:e4ef4c46-e84e-4249-b406-884c4d717dbc" + "WESTUS:20201027T024719Z:5ceb157e-69e1-471c-8bf5-1fa6e355691b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:29 GMT" + "Tue, 27 Oct 2020 02:47:19 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/operationresults/95e15b71-a2e3-427a-a354-c7bfe5b15e13?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTVlMTViNzEtYTJlMy00MjdhLWEzNTQtYzdiZmU1YjE1ZTEzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/operationresults/d340288b-ed6e-42ce-85b0-731213456b3d?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDM0MDI4OGItZWQ2ZS00MmNlLTg1YjAtNzMxMjEzNDU2YjNkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "e102ac2c-95c9-4163-b58a-16ded0c550db" + "04515af0-6f43-49b3-88bc-fbcbb1a79e4a" ], "x-ms-client-request-id": [ - "821570dc-0023-4acf-8174-fc79b3583430" + "cf4c6c99-0423-43cb-ba86-04e37a3f5ee1" ], "OData-Version": [ "4.0" @@ -333,19 +333,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-correlation-request-id": [ - "611344c2-fff6-4b59-948f-5f3687ac9bee" + "87f5b39f-7f50-407e-b55e-9a1acf0415dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231239Z:611344c2-fff6-4b59-948f-5f3687ac9bee" + "WESTUS:20201027T024730Z:87f5b39f-7f50-407e-b55e-9a1acf0415dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:39 GMT" + "Tue, 27 Oct 2020 02:47:29 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile3286?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjg2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile9998?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5OTk4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "d8096352-c501-4fe4-bf2c-fcbead3c3ef4" + "4cce4c86-4f15-4f98-9d7a-185729c067e9" ], "x-ms-client-request-id": [ - "7990805f-49a1-4152-96c3-ffb6bc6502f3" + "b3163b4b-0fd2-4e9f-8938-8f0e218f46eb" ], "OData-Version": [ "4.0" @@ -405,16 +405,16 @@ "49" ], "x-ms-correlation-request-id": [ - "4e0316b5-cf44-4a27-80cf-874f81af2162" + "47619ccc-4251-4b77-8bb1-6120c7c7da10" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231240Z:4e0316b5-cf44-4a27-80cf-874f81af2162" + "WESTUS:20201027T024731Z:47619ccc-4251-4b77-8bb1-6120c7c7da10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:40 GMT" + "Tue, 27 Oct 2020 02:47:30 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3286\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile3286\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile9998\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile9998\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile3286/generateSsoUri?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjg2L2dlbmVyYXRlU3NvVXJpP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile9998/generateSsoUri?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5OTk4L2dlbmVyYXRlU3NvVXJpP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "85f906ec-49c1-437a-a612-473f57991c53" + "3d22036c-370f-4ef9-b2b9-89e95fd6fa75" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -456,10 +456,10 @@ "no-cache" ], "x-ms-request-id": [ - "38e01ac3-e597-4b17-a41b-022fd989cd19" + "956d853d-61cc-436e-919a-0f398f4d24cf" ], "x-ms-client-request-id": [ - "85f906ec-49c1-437a-a612-473f57991c53" + "3d22036c-370f-4ef9-b2b9-89e95fd6fa75" ], "OData-Version": [ "4.0" @@ -480,19 +480,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "d05ffd29-2563-4a4e-8473-c1fc57cf5ec3" + "61ce6231-6b82-4c9f-85e0-50a2cf1d9b9c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231241Z:d05ffd29-2563-4a4e-8473-c1fc57cf5ec3" + "WESTUS:20201027T024732Z:61ce6231-6b82-4c9f-85e0-50a2cf1d9b9c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:41 GMT" + "Tue, 27 Oct 2020 02:47:31 GMT" ], "Content-Length": [ - "263" + "261" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -501,26 +501,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"ssoUriValue\": \"https://cdn.windowsazure.com/account/loginexternal/?token=Kf4%2bkYozpfPw2qk7wbb0JCAK5pyTHbFU%2bl%2fXZJ4lWlA%3d×tamp=2020-08-10T23:12:41.7385587Z&cdnAccountId=F4245&userCustomId=SSO-1e4186d6-6f68-4e7b-8195-e31cb5c95504&restEndpointId=1\"\r\n}", + "ResponseBody": "{\r\n \"ssoUriValue\": \"https://cdn.windowsazure.com/account/loginexternal/?token=JBtPg40O%2bT%2fkrNmPi7lN9xocuqS44ST3xl1qDTk6JcI%3d×tamp=2020-10-27T02:47:32.0944895Z&cdnAccountId=FCD31&userCustomId=SSO-91a83e14-0937-4ae3-8fba-981fe8936ad1&restEndpointId=1\"\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile5137?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MTM3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile1358?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMzU4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "22082744-35a1-416b-a603-de59f65ffcde" + "d8101474-5f45-49e0-b67a-eb5b4ee9cbfc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -540,13 +540,13 @@ "10" ], "x-ms-request-id": [ - "7ffa581f-9318-4df8-85d7-b2abcbc292c3" + "f4c29b12-fcfb-43b5-9f8e-dce4acfd5389" ], "x-ms-client-request-id": [ - "22082744-35a1-416b-a603-de59f65ffcde" + "d8101474-5f45-49e0-b67a-eb5b4ee9cbfc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/operationresults/b881e67d-72aa-4785-bbfb-634f4ff4f881?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/operationresults/c9fc0020-3a03-4755-ba2e-3a7eca59f58a?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -567,16 +567,16 @@ "23" ], "x-ms-correlation-request-id": [ - "b9f03c43-0633-4606-8948-e6a66d7225f8" + "0034c501-19ee-451e-9d30-5eb40eb5864d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231245Z:b9f03c43-0633-4606-8948-e6a66d7225f8" + "WESTUS:20201027T024735Z:0034c501-19ee-451e-9d30-5eb40eb5864d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:45 GMT" + "Tue, 27 Oct 2020 02:47:34 GMT" ], "Content-Length": [ "398" @@ -588,26 +588,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5137\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile5137\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile1358\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile1358\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8937/providers/Microsoft.Cdn/profiles/profile5137/generateSsoUri?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MTM3L2dlbmVyYXRlU3NvVXJpP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1802/providers/Microsoft.Cdn/profiles/profile1358/generateSsoUri?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMzU4L2dlbmVyYXRlU3NvVXJpP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d672d9f5-1feb-4c1c-89de-78e1c78f825d" + "7354c5bb-881b-41e4-896d-291575e52c1b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -618,10 +618,10 @@ "no-cache" ], "x-ms-request-id": [ - "20256e2e-5ce7-4d1d-a051-666f50643013" + "a6f4c7ce-5fa8-4cc3-bc44-51d926b8530a" ], "x-ms-client-request-id": [ - "d672d9f5-1feb-4c1c-89de-78e1c78f825d" + "7354c5bb-881b-41e4-896d-291575e52c1b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -639,16 +639,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "35157775-043f-4dda-af52-c3e246c9c411" + "a7831767-d626-49d8-99e9-d9950b1980a4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231246Z:35157775-043f-4dda-af52-c3e246c9c411" + "WESTUS:20201027T024736Z:a7831767-d626-49d8-99e9-d9950b1980a4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:46 GMT" + "Tue, 27 Oct 2020 02:47:35 GMT" ], "Content-Length": [ "147" @@ -667,21 +667,21 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8937?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4OTM3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1802?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODAyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a5c27151-a100-4e12-83a9-bf2d4461cfa2" + "84b20d3e-a6a8-4b85-aabf-b490561a1456" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -693,7 +693,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -702,13 +702,13 @@ "14999" ], "x-ms-request-id": [ - "ce445dc8-9323-4cb5-9990-5717b34e81bd" + "e91b5d99-31e5-4f46-905e-a39472732227" ], "x-ms-correlation-request-id": [ - "ce445dc8-9323-4cb5-9990-5717b34e81bd" + "e91b5d99-31e5-4f46-905e-a39472732227" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231246Z:ce445dc8-9323-4cb5-9990-5717b34e81bd" + "WESTUS:20201027T024736Z:e91b5d99-31e5-4f46-905e-a39472732227" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -717,7 +717,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:46 GMT" + "Tue, 27 Oct 2020 02:47:35 GMT" ], "Expires": [ "-1" @@ -730,15 +730,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -750,7 +750,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -759,13 +759,13 @@ "11999" ], "x-ms-request-id": [ - "3a107650-e2fd-41eb-8fec-8f0062ae8bed" + "2e70ba2a-42e4-4c9a-bce4-c3ec66abb2e8" ], "x-ms-correlation-request-id": [ - "3a107650-e2fd-41eb-8fec-8f0062ae8bed" + "2e70ba2a-42e4-4c9a-bce4-c3ec66abb2e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231301Z:3a107650-e2fd-41eb-8fec-8f0062ae8bed" + "WESTUS:20201027T024751Z:2e70ba2a-42e4-4c9a-bce4-c3ec66abb2e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -774,7 +774,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:13:01 GMT" + "Tue, 27 Oct 2020 02:47:50 GMT" ], "Expires": [ "-1" @@ -787,15 +787,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -807,7 +807,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -816,13 +816,13 @@ "11998" ], "x-ms-request-id": [ - "9a46a7e6-d6bc-4f7e-b282-0be355b85351" + "1f5af195-f74d-4d18-95ca-7dec7df1e1a8" ], "x-ms-correlation-request-id": [ - "9a46a7e6-d6bc-4f7e-b282-0be355b85351" + "1f5af195-f74d-4d18-95ca-7dec7df1e1a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231316Z:9a46a7e6-d6bc-4f7e-b282-0be355b85351" + "WESTUS:20201027T024806Z:1f5af195-f74d-4d18-95ca-7dec7df1e1a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -831,7 +831,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:13:16 GMT" + "Tue, 27 Oct 2020 02:48:06 GMT" ], "Expires": [ "-1" @@ -844,15 +844,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -864,7 +864,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -873,13 +873,13 @@ "11997" ], "x-ms-request-id": [ - "ce0e78bb-68f5-4168-8bf8-d794c968b4c2" + "3c458685-3d3e-4a84-b433-21a36129c976" ], "x-ms-correlation-request-id": [ - "ce0e78bb-68f5-4168-8bf8-d794c968b4c2" + "3c458685-3d3e-4a84-b433-21a36129c976" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231331Z:ce0e78bb-68f5-4168-8bf8-d794c968b4c2" + "WESTUS:20201027T024821Z:3c458685-3d3e-4a84-b433-21a36129c976" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -888,7 +888,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:13:31 GMT" + "Tue, 27 Oct 2020 02:48:21 GMT" ], "Expires": [ "-1" @@ -901,15 +901,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -921,7 +921,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -930,13 +930,13 @@ "11996" ], "x-ms-request-id": [ - "4b5cf4fc-7ab1-4b97-a401-5666959797a4" + "954be1ad-bd63-4988-bf0c-1388cc7f1587" ], "x-ms-correlation-request-id": [ - "4b5cf4fc-7ab1-4b97-a401-5666959797a4" + "954be1ad-bd63-4988-bf0c-1388cc7f1587" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231346Z:4b5cf4fc-7ab1-4b97-a401-5666959797a4" + "WESTUS:20201027T024836Z:954be1ad-bd63-4988-bf0c-1388cc7f1587" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -945,7 +945,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:13:46 GMT" + "Tue, 27 Oct 2020 02:48:36 GMT" ], "Expires": [ "-1" @@ -958,15 +958,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -978,7 +978,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -987,13 +987,13 @@ "11995" ], "x-ms-request-id": [ - "bb6ea9ba-f7ad-4156-8270-175441770567" + "66bbc88c-3eb8-4a32-b308-69ded55921a0" ], "x-ms-correlation-request-id": [ - "bb6ea9ba-f7ad-4156-8270-175441770567" + "66bbc88c-3eb8-4a32-b308-69ded55921a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231401Z:bb6ea9ba-f7ad-4156-8270-175441770567" + "WESTUS:20201027T024851Z:66bbc88c-3eb8-4a32-b308-69ded55921a0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1002,7 +1002,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:14:01 GMT" + "Tue, 27 Oct 2020 02:48:51 GMT" ], "Expires": [ "-1" @@ -1015,15 +1015,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1035,7 +1035,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1044,13 +1044,13 @@ "11994" ], "x-ms-request-id": [ - "093790ee-38cb-48c2-9ed3-34b69c2e3509" + "1f01d415-e64a-4ca1-876e-6894db50ee80" ], "x-ms-correlation-request-id": [ - "093790ee-38cb-48c2-9ed3-34b69c2e3509" + "1f01d415-e64a-4ca1-876e-6894db50ee80" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231416Z:093790ee-38cb-48c2-9ed3-34b69c2e3509" + "WESTUS:20201027T024906Z:1f01d415-e64a-4ca1-876e-6894db50ee80" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1059,7 +1059,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:14:16 GMT" + "Tue, 27 Oct 2020 02:49:06 GMT" ], "Expires": [ "-1" @@ -1072,15 +1072,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1091,80 +1091,17 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], "x-ms-ratelimit-remaining-subscription-reads": [ "11993" ], "x-ms-request-id": [ - "71b2d136-c8a9-4f12-af3e-42ad4ca075a9" - ], - "x-ms-correlation-request-id": [ - "71b2d136-c8a9-4f12-af3e-42ad4ca075a9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T231431Z:71b2d136-c8a9-4f12-af3e-42ad4ca075a9" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:14:31 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "4e203781-c2ec-4234-af95-1569a65c4369" + "fc8edd0d-1146-4190-9607-cfada0f26d8a" ], "x-ms-correlation-request-id": [ - "4e203781-c2ec-4234-af95-1569a65c4369" + "fc8edd0d-1146-4190-9607-cfada0f26d8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231446Z:4e203781-c2ec-4234-af95-1569a65c4369" + "WESTUS:20201027T024921Z:fc8edd0d-1146-4190-9607-cfada0f26d8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1173,172 +1110,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:14:46 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-request-id": [ - "694c40b5-48bc-4c17-9b53-8399465d21e8" - ], - "x-ms-correlation-request-id": [ - "694c40b5-48bc-4c17-9b53-8399465d21e8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T231502Z:694c40b5-48bc-4c17-9b53-8399465d21e8" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:15:01 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-request-id": [ - "98d97aae-37bd-4f7a-b66c-0f017d09b006" - ], - "x-ms-correlation-request-id": [ - "98d97aae-37bd-4f7a-b66c-0f017d09b006" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T231517Z:98d97aae-37bd-4f7a-b66c-0f017d09b006" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:15:17 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" - ], - "x-ms-request-id": [ - "4dbb1204-80a9-4d56-b8fc-74d775cf2801" - ], - "x-ms-correlation-request-id": [ - "4dbb1204-80a9-4d56-b8fc-74d775cf2801" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T231532Z:4dbb1204-80a9-4d56-b8fc-74d775cf2801" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:15:31 GMT" + "Tue, 27 Oct 2020 02:49:21 GMT" ], "Expires": [ "-1" @@ -1351,15 +1123,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODkzNy1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGt6TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTgwMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGd3TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1371,16 +1143,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "61e2dc39-2594-480d-927e-2216623a2dd1" + "a2df8e0e-2090-4137-b21b-bf0b2ec50e68" ], "x-ms-correlation-request-id": [ - "61e2dc39-2594-480d-927e-2216623a2dd1" + "a2df8e0e-2090-4137-b21b-bf0b2ec50e68" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231532Z:61e2dc39-2594-480d-927e-2216623a2dd1" + "WESTUS:20201027T024921Z:a2df8e0e-2090-4137-b21b-bf0b2ec50e68" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1389,7 +1161,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:15:32 GMT" + "Tue, 27 Oct 2020 02:49:21 GMT" ], "Expires": [ "-1" @@ -1404,11 +1176,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup8937" + "cdnResourceGroup1802" ], "GenerateSsoUriTest": [ - "profile3286", - "profile5137" + "profile9998", + "profile1358" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GetSupportedOptimizationTypes.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GetSupportedOptimizationTypes.json index 26f5e5b2640f8..447400a48a49e 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GetSupportedOptimizationTypes.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/GetSupportedOptimizationTypes.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6c8b18c2-808f-4d84-af28-0a669aa0eb52" + "aeb07cfb-43cc-400d-bee6-b37f0e6c445f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "a47364fe-451f-4b2f-91fc-74a102248784" + "397dcd0c-bd60-4dac-a44a-6a1f726efa7b" ], "x-ms-correlation-request-id": [ - "a47364fe-451f-4b2f-91fc-74a102248784" + "397dcd0c-bd60-4dac-a44a-6a1f726efa7b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230838Z:a47364fe-451f-4b2f-91fc-74a102248784" + "WESTUS:20201027T024417Z:397dcd0c-bd60-4dac-a44a-6a1f726efa7b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:38 GMT" + "Tue, 27 Oct 2020 02:44:16 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3256\",\r\n \"name\": \"cdnResourceGroup3256\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1222\",\r\n \"name\": \"cdnResourceGroup1222\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3256/providers/Microsoft.Cdn/profiles/profile3218?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjE4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1222/providers/Microsoft.Cdn/profiles/profile4824?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0ODI0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "952cb07e-a3e4-4cad-82a7-4226755c7d24" + "f4bf570d-9ee4-468d-a989-a4bfe5674f02" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "b50d4316-36f7-4989-8933-b3703cb57777" + "defb87b2-2b7f-4134-8148-965d0ae45c5b" ], "x-ms-client-request-id": [ - "952cb07e-a3e4-4cad-82a7-4226755c7d24" + "f4bf570d-9ee4-468d-a989-a4bfe5674f02" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/operationresults/85eae54d-bcf1-41b7-b710-f01f28e2e5d6?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/operationresults/3a7a9d39-0dad-4ebd-beca-eaa292b1ca15?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "dc4aa76b-02c8-4ed4-afc9-8b3ed5b32e89" + "8d756e0b-32c8-4171-ac82-251597704134" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230842Z:dc4aa76b-02c8-4ed4-afc9-8b3ed5b32e89" + "WESTUS:20201027T024423Z:8d756e0b-32c8-4171-ac82-251597704134" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:42 GMT" + "Tue, 27 Oct 2020 02:44:23 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/profiles/profile3218\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4824\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/profiles/profile4824\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/operationresults/85eae54d-bcf1-41b7-b710-f01f28e2e5d6?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODVlYWU1NGQtYmNmMS00MWI3LWI3MTAtZjAxZjI4ZTJlNWQ2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/operationresults/3a7a9d39-0dad-4ebd-beca-eaa292b1ca15?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvM2E3YTlkMzktMGRhZC00ZWJkLWJlY2EtZWFhMjkyYjFjYTE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "e1014116-543a-4c06-aa56-97cea15e0567" + "b7052ad3-d404-4c11-b990-66a03d88fad1" ], "x-ms-client-request-id": [ - "7f45925b-4657-45bc-b8aa-fa41c5315bfd" + "c752a942-fee0-4ffc-b4b9-b83fa3ccfeed" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11999" ], "x-ms-correlation-request-id": [ - "e65f876b-a152-4efa-8cb7-ef3e987ebb7f" + "f71229bb-acde-4515-accc-2a682bdbfd3a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230853Z:e65f876b-a152-4efa-8cb7-ef3e987ebb7f" + "WESTUS:20201027T024433Z:f71229bb-acde-4515-accc-2a682bdbfd3a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:53 GMT" + "Tue, 27 Oct 2020 02:44:33 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/operationresults/85eae54d-bcf1-41b7-b710-f01f28e2e5d6?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODVlYWU1NGQtYmNmMS00MWI3LWI3MTAtZjAxZjI4ZTJlNWQ2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/operationresults/3a7a9d39-0dad-4ebd-beca-eaa292b1ca15?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvM2E3YTlkMzktMGRhZC00ZWJkLWJlY2EtZWFhMjkyYjFjYTE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "2ea88f19-7aee-47a0-8b98-29b7ce1b6aef" + "840804be-ed16-4236-8473-dbeb0985b9d8" ], "x-ms-client-request-id": [ - "85cd8618-3371-41fd-bac6-6d23ceed9b0a" + "3e422894-f843-4c1c-89ca-9f28c31004b7" ], "OData-Version": [ "4.0" @@ -264,19 +264,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11998" ], "x-ms-correlation-request-id": [ - "0158fa61-6550-4140-ad09-03d0bb970f82" + "f3661fd9-9e2e-4a98-853a-a99b29934480" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230903Z:0158fa61-6550-4140-ad09-03d0bb970f82" + "WESTUS:20201027T024444Z:f3661fd9-9e2e-4a98-853a-a99b29934480" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:09:03 GMT" + "Tue, 27 Oct 2020 02:44:43 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/operationresults/85eae54d-bcf1-41b7-b710-f01f28e2e5d6?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvODVlYWU1NGQtYmNmMS00MWI3LWI3MTAtZjAxZjI4ZTJlNWQ2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/operationresults/3a7a9d39-0dad-4ebd-beca-eaa292b1ca15?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvM2E3YTlkMzktMGRhZC00ZWJkLWJlY2EtZWFhMjkyYjFjYTE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "659a0b3a-a8c6-466c-b1db-620c6579d8dc" + "47f0aac6-d171-4a68-801e-c637e3adf515" ], "x-ms-client-request-id": [ - "f84c9f5d-de34-40c6-87a1-10bdf43ed484" + "41ed2ca8-f9e5-4c82-a853-bb5b98de2f6b" ], "OData-Version": [ "4.0" @@ -333,22 +333,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11997" ], "x-ms-correlation-request-id": [ - "8ff7d42f-985a-4465-9f69-791ca9dcee70" + "710887a9-3cdb-462c-b4e3-35022e580cc1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230913Z:8ff7d42f-985a-4465-9f69-791ca9dcee70" + "WESTUS:20201027T024454Z:710887a9-3cdb-462c-b4e3-35022e580cc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:09:13 GMT" + "Tue, 27 Oct 2020 02:44:54 GMT" ], "Content-Length": [ - "77" + "78" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -357,20 +357,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3256/providers/Microsoft.Cdn/profiles/profile3218?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjE4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/operationresults/3a7a9d39-0dad-4ebd-beca-eaa292b1ca15?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvM2E3YTlkMzktMGRhZC00ZWJkLWJlY2EtZWFhMjkyYjFjYTE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "bc025458-5f96-4dae-a829-6b91e188066b" + "9d020632-1929-4cac-8ed6-9f6e1fe2750f" ], "x-ms-client-request-id": [ - "53402d87-d8a2-4d0e-9c8d-926008ee3b19" + "ecbd3982-b9ef-4988-bb74-a4b0cddb1df8" ], "OData-Version": [ "4.0" @@ -401,23 +401,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" ], "x-ms-correlation-request-id": [ - "1a84f0f7-faa9-462a-acf1-f62f485c0565" + "7e7a33a5-479b-4f93-98ad-aaade60825ef" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230914Z:1a84f0f7-faa9-462a-acf1-f62f485c0565" + "WESTUS:20201027T024504Z:7e7a33a5-479b-4f93-98ad-aaade60825ef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:09:14 GMT" + "Tue, 27 Oct 2020 02:45:04 GMT" ], "Content-Length": [ - "397" + "77" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -426,26 +426,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3218\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256/providers/Microsoft.Cdn/profiles/profile3218\",\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}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3256/providers/Microsoft.Cdn/profiles/profile3218/getSupportedOptimizationTypes?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzMjE4L2dldFN1cHBvcnRlZE9wdGltaXphdGlvblR5cGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "POST", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1222/providers/Microsoft.Cdn/profiles/profile4824?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0ODI0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "4650f72b-e475-48ba-95d2-4c0cfd34601c" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -456,10 +450,10 @@ "no-cache" ], "x-ms-request-id": [ - "e7d2c6d7-263b-474a-a99a-0e3e5f4713f8" + "1dc20775-37a3-433d-be26-146962e1eb54" ], "x-ms-client-request-id": [ - "4650f72b-e475-48ba-95d2-4c0cfd34601c" + "607b22cc-d31e-46c7-ab67-101ec3ab9628" ], "OData-Version": [ "4.0" @@ -476,23 +470,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "49" ], "x-ms-correlation-request-id": [ - "bf5bc08f-7020-41da-a383-9484d70626ab" + "911260b9-3a77-4e8b-978d-3c0b5adaba82" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230915Z:bf5bc08f-7020-41da-a383-9484d70626ab" + "WESTUS:20201027T024505Z:911260b9-3a77-4e8b-978d-3c0b5adaba82" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:09:15 GMT" + "Tue, 27 Oct 2020 02:45:05 GMT" ], "Content-Length": [ - "95" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -501,26 +495,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"supportedOptimizationTypes\": [\r\n \"GeneralWebDelivery\",\r\n \"DynamicSiteAcceleration\"\r\n ]\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile4824\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222/providers/Microsoft.Cdn/profiles/profile4824\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3256?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMjU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "DELETE", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1222/providers/Microsoft.Cdn/profiles/profile4824/getSupportedOptimizationTypes?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0ODI0L2dldFN1cHBvcnRlZE9wdGltaXphdGlvblR5cGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1abdb2fa-1b53-4772-a05b-2b60ea458543" + "32570b61-7397-435e-9e70-9c0199dfb633" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -530,224 +524,71 @@ "Pragma": [ "no-cache" ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], "x-ms-request-id": [ - "f9674973-f4bd-42af-8281-197440855b12" + "3c6228d4-085c-45e3-9790-351c1c00bf3d" ], - "x-ms-correlation-request-id": [ - "f9674973-f4bd-42af-8281-197440855b12" + "x-ms-client-request-id": [ + "32570b61-7397-435e-9e70-9c0199dfb633" ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230915Z:f9674973-f4bd-42af-8281-197440855b12" + "OData-Version": [ + "4.0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:09:15 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "Server": [ + "Microsoft-IIS/10.0" ], - "Retry-After": [ - "15" + "X-AspNet-Version": [ + "4.0.30319" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "X-Powered-By": [ + "ASP.NET" ], - "x-ms-request-id": [ - "04f73702-9b98-44cf-a296-ec25b439fbf7" + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" ], "x-ms-correlation-request-id": [ - "04f73702-9b98-44cf-a296-ec25b439fbf7" + "4cd25fd8-7d58-4485-824e-5648a047c644" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230931Z:04f73702-9b98-44cf-a296-ec25b439fbf7" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "WESTUS:20201027T024506Z:4cd25fd8-7d58-4485-824e-5648a047c644" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:09:30 GMT" - ], - "Expires": [ - "-1" + "Tue, 27 Oct 2020 02:45:06 GMT" ], "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "7af16610-0c42-49dc-baee-1210a7315b80" - ], - "x-ms-correlation-request-id": [ - "7af16610-0c42-49dc-baee-1210a7315b80" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230946Z:7af16610-0c42-49dc-baee-1210a7315b80" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" + "95" ], - "Date": [ - "Mon, 10 Aug 2020 23:09:45 GMT" + "Content-Type": [ + "application/json; odata.metadata=minimal; odata.streaming=true" ], "Expires": [ "-1" - ], - "Content-Length": [ - "0" ] }, - "ResponseBody": "", - "StatusCode": 202 + "ResponseBody": "{\r\n \"supportedOptimizationTypes\": [\r\n \"GeneralWebDelivery\",\r\n \"DynamicSiteAcceleration\"\r\n ]\r\n}", + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1222?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxMjIyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "19669a12-b67f-4834-8b65-270eba25a8b1" - ], - "x-ms-correlation-request-id": [ - "19669a12-b67f-4834-8b65-270eba25a8b1" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T231001Z:19669a12-b67f-4834-8b65-270eba25a8b1" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:10:00 GMT" + "x-ms-client-request-id": [ + "eca132d5-726f-4d4c-bec3-8a8f2477451c" ], - "Expires": [ - "-1" + "Accept-Language": [ + "en-US" ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -759,22 +600,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "x-ms-ratelimit-remaining-subscription-deletes": [ + "14999" ], "x-ms-request-id": [ - "c31f6a0a-38b9-477b-b31f-b074fb1f03fb" + "abd67847-f680-4805-a97d-2ad0ff04151c" ], "x-ms-correlation-request-id": [ - "c31f6a0a-38b9-477b-b31f-b074fb1f03fb" + "abd67847-f680-4805-a97d-2ad0ff04151c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231016Z:c31f6a0a-38b9-477b-b31f-b074fb1f03fb" + "WESTUS:20201027T024506Z:abd67847-f680-4805-a97d-2ad0ff04151c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -783,7 +624,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:10:15 GMT" + "Tue, 27 Oct 2020 02:45:06 GMT" ], "Expires": [ "-1" @@ -796,15 +637,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -816,22 +657,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11999" ], "x-ms-request-id": [ - "1a33db32-5a6f-4784-8788-aea6eae7c2b0" + "06ea8420-6d52-4f0f-8a3a-a311a507c28c" ], "x-ms-correlation-request-id": [ - "1a33db32-5a6f-4784-8788-aea6eae7c2b0" + "06ea8420-6d52-4f0f-8a3a-a311a507c28c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231031Z:1a33db32-5a6f-4784-8788-aea6eae7c2b0" + "WESTUS:20201027T024522Z:06ea8420-6d52-4f0f-8a3a-a311a507c28c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -840,7 +681,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:10:31 GMT" + "Tue, 27 Oct 2020 02:45:21 GMT" ], "Expires": [ "-1" @@ -853,15 +694,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -873,22 +714,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11998" ], "x-ms-request-id": [ - "07bf51f4-8044-4f6b-b682-fc1cf3353d69" + "64a40355-85b5-4f99-9911-28d053c78dc4" ], "x-ms-correlation-request-id": [ - "07bf51f4-8044-4f6b-b682-fc1cf3353d69" + "64a40355-85b5-4f99-9911-28d053c78dc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231046Z:07bf51f4-8044-4f6b-b682-fc1cf3353d69" + "WESTUS:20201027T024537Z:64a40355-85b5-4f99-9911-28d053c78dc4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,7 +738,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:10:46 GMT" + "Tue, 27 Oct 2020 02:45:36 GMT" ], "Expires": [ "-1" @@ -910,15 +751,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -930,22 +771,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11997" ], "x-ms-request-id": [ - "30a481e9-a7f0-44ee-9ba8-ac61c1dca457" + "08395ffb-1477-44a5-87f8-ad45668ef410" ], "x-ms-correlation-request-id": [ - "30a481e9-a7f0-44ee-9ba8-ac61c1dca457" + "08395ffb-1477-44a5-87f8-ad45668ef410" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231101Z:30a481e9-a7f0-44ee-9ba8-ac61c1dca457" + "WESTUS:20201027T024552Z:08395ffb-1477-44a5-87f8-ad45668ef410" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -954,7 +795,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:11:01 GMT" + "Tue, 27 Oct 2020 02:45:51 GMT" ], "Expires": [ "-1" @@ -967,15 +808,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -987,22 +828,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11996" ], "x-ms-request-id": [ - "b17970c6-c6f2-43b1-aadb-5b53f002a23f" + "1fe97907-9ff7-4726-b929-dcd12a0a719b" ], "x-ms-correlation-request-id": [ - "b17970c6-c6f2-43b1-aadb-5b53f002a23f" + "1fe97907-9ff7-4726-b929-dcd12a0a719b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231116Z:b17970c6-c6f2-43b1-aadb-5b53f002a23f" + "WESTUS:20201027T024607Z:1fe97907-9ff7-4726-b929-dcd12a0a719b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1011,7 +852,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:11:16 GMT" + "Tue, 27 Oct 2020 02:46:06 GMT" ], "Expires": [ "-1" @@ -1024,15 +865,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1044,22 +885,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11995" ], "x-ms-request-id": [ - "b3a4b178-911a-43d1-9546-47a513ce8723" + "258578be-50db-4900-b45e-fb39845e3d2c" ], "x-ms-correlation-request-id": [ - "b3a4b178-911a-43d1-9546-47a513ce8723" + "258578be-50db-4900-b45e-fb39845e3d2c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231131Z:b3a4b178-911a-43d1-9546-47a513ce8723" + "WESTUS:20201027T024622Z:258578be-50db-4900-b45e-fb39845e3d2c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,7 +909,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:11:31 GMT" + "Tue, 27 Oct 2020 02:46:21 GMT" ], "Expires": [ "-1" @@ -1081,15 +922,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1101,22 +942,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11994" ], "x-ms-request-id": [ - "41e57646-0004-4a1b-93c1-793f14e88317" + "06656f4d-3329-4383-9cc5-75de51d41e84" ], "x-ms-correlation-request-id": [ - "41e57646-0004-4a1b-93c1-793f14e88317" + "06656f4d-3329-4383-9cc5-75de51d41e84" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231146Z:41e57646-0004-4a1b-93c1-793f14e88317" + "WESTUS:20201027T024637Z:06656f4d-3329-4383-9cc5-75de51d41e84" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1125,7 +966,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:11:46 GMT" + "Tue, 27 Oct 2020 02:46:36 GMT" ], "Expires": [ "-1" @@ -1138,15 +979,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1158,16 +999,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11993" ], "x-ms-request-id": [ - "a5dcd9f4-55c6-4194-8a30-ca6f0aa7ba07" + "6fbc1d2b-1c75-4629-8d5a-d4c361b00643" ], "x-ms-correlation-request-id": [ - "a5dcd9f4-55c6-4194-8a30-ca6f0aa7ba07" + "6fbc1d2b-1c75-4629-8d5a-d4c361b00643" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231201Z:a5dcd9f4-55c6-4194-8a30-ca6f0aa7ba07" + "WESTUS:20201027T024652Z:6fbc1d2b-1c75-4629-8d5a-d4c361b00643" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1176,7 +1017,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:00 GMT" + "Tue, 27 Oct 2020 02:46:51 GMT" ], "Expires": [ "-1" @@ -1189,15 +1030,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzI1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekkxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTIyMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVEl5TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1209,16 +1050,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11992" ], "x-ms-request-id": [ - "82b03fe9-2d70-448e-ae63-3ca0ac26eae8" + "7025f6cf-b195-479a-b2e7-3fcb8bf3c965" ], "x-ms-correlation-request-id": [ - "82b03fe9-2d70-448e-ae63-3ca0ac26eae8" + "7025f6cf-b195-479a-b2e7-3fcb8bf3c965" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231201Z:82b03fe9-2d70-448e-ae63-3ca0ac26eae8" + "WESTUS:20201027T024652Z:7025f6cf-b195-479a-b2e7-3fcb8bf3c965" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1227,7 +1068,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:12:01 GMT" + "Tue, 27 Oct 2020 02:46:51 GMT" ], "Expires": [ "-1" @@ -1242,10 +1083,10 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup3256" + "cdnResourceGroup1222" ], "GetSupportedOptimizationTypes": [ - "profile3218" + "profile4824" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCheckUsageTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCheckUsageTest.json index 92d601eed78f8..1450d11a3a1d5 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCheckUsageTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCheckUsageTest.json @@ -7,16 +7,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4fd61348-333b-48ed-8d9a-d566fcf2346f" + "3da23531-7fad-4662-b86c-59a780e24b8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -27,10 +27,10 @@ "no-cache" ], "x-ms-request-id": [ - "b163c0ba-0c25-4212-8972-1f76a0ebb347" + "3b9ab811-7ada-43ce-b6e7-ec3d755a8091" ], "x-ms-client-request-id": [ - "4fd61348-333b-48ed-8d9a-d566fcf2346f" + "3da23531-7fad-4662-b86c-59a780e24b8e" ], "OData-Version": [ "4.0" @@ -51,19 +51,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "71d599a2-e294-4a2c-8d9e-7e2df689be58" + "f095a260-e884-49eb-aa90-6bf083a3f5c5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225800Z:71d599a2-e294-4a2c-8d9e-7e2df689be58" + "WESTUS:20201027T023620Z:f095a260-e884-49eb-aa90-6bf083a3f5c5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:00 GMT" + "Tue, 27 Oct 2020 02:36:20 GMT" ], "Content-Length": [ - "113" + "114" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -72,7 +72,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 99,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 100,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { @@ -82,16 +82,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d346a6c-0bca-4f5e-8cd2-e659b2a88fd2" + "93d2d80a-7d1a-451f-8497-457eea0ade55" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -102,10 +102,10 @@ "no-cache" ], "x-ms-request-id": [ - "2c29ffb2-dc0a-460c-93ef-a45c667de956" + "b3819c45-be08-4e38-b457-0b138a76a102" ], "x-ms-client-request-id": [ - "4d346a6c-0bca-4f5e-8cd2-e659b2a88fd2" + "93d2d80a-7d1a-451f-8497-457eea0ade55" ], "OData-Version": [ "4.0" @@ -126,19 +126,19 @@ "1198" ], "x-ms-correlation-request-id": [ - "44e0861c-a1f2-48d1-ab2f-b9018d2c1061" + "9d0ac44c-1c34-4562-b1ed-33bb38ca60f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225851Z:44e0861c-a1f2-48d1-ab2f-b9018d2c1061" + "WESTUS:20201027T023701Z:9d0ac44c-1c34-4562-b1ed-33bb38ca60f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:50 GMT" + "Tue, 27 Oct 2020 02:37:00 GMT" ], "Content-Length": [ - "113" + "114" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -147,25 +147,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 99,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"resourceType\": \"profile\",\r\n \"unit\": \"count\",\r\n \"currentValue\": 100,\r\n \"limit\": 200\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c3f3c8a-7982-4429-a51b-0008a45ee2a9" + "9088d295-0587-48e8-929e-db026d17de86" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -186,13 +186,13 @@ "1199" ], "x-ms-request-id": [ - "98feb056-b5a5-4977-a857-00c3f3604cbe" + "369d1ff2-02f9-4680-9428-b217980e4d9f" ], "x-ms-correlation-request-id": [ - "98feb056-b5a5-4977-a857-00c3f3604cbe" + "369d1ff2-02f9-4680-9428-b217980e4d9f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225800Z:98feb056-b5a5-4977-a857-00c3f3604cbe" + "WESTUS:20201027T023621Z:369d1ff2-02f9-4680-9428-b217980e4d9f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -201,7 +201,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:00 GMT" + "Tue, 27 Oct 2020 02:36:20 GMT" ], "Content-Length": [ "193" @@ -213,26 +213,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556\",\r\n \"name\": \"cdnResourceGroup8556\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174\",\r\n \"name\": \"cdnResourceGroup4174\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "88903c5c-1c92-4377-96a5-676eae309a39" + "4b5d35ab-3746-44dd-94f5-7de459a07aa1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -252,13 +252,13 @@ "10" ], "x-ms-request-id": [ - "125dfdc4-d30c-46e4-bce9-8f927d5c2d6c" + "475a655c-de8f-4722-b6a4-28257e9c1781" ], "x-ms-client-request-id": [ - "88903c5c-1c92-4377-96a5-676eae309a39" + "4b5d35ab-3746-44dd-94f5-7de459a07aa1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/4e6c5744-0c0d-4eda-81fc-03ac8b47695e?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/d4d44f9f-420a-40b2-9d62-b99645df1e0f?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -279,16 +279,16 @@ "24" ], "x-ms-correlation-request-id": [ - "94e93dc2-999c-4354-a820-63e7193aecca" + "6b35b900-12d0-4fd7-a89b-2db54ab64777" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225807Z:94e93dc2-999c-4354-a820-63e7193aecca" + "WESTUS:20201027T023627Z:6b35b900-12d0-4fd7-a89b-2db54ab64777" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:07 GMT" + "Tue, 27 Oct 2020 02:36:26 GMT" ], "Content-Length": [ "398" @@ -300,20 +300,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1282\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile2066\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/4e6c5744-0c0d-4eda-81fc-03ac8b47695e?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2YzU3NDQtMGMwZC00ZWRhLTgxZmMtMDNhYzhiNDc2OTVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/d4d44f9f-420a-40b2-9d62-b99645df1e0f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDRkNDRmOWYtNDIwYS00MGIyLTlkNjItYjk5NjQ1ZGYxZTBmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -324,10 +324,10 @@ "no-cache" ], "x-ms-request-id": [ - "ce4f3ac7-7ddd-415e-9a5b-bbe86380a019" + "9c07586f-d280-4264-ac7d-8502c1ed6479" ], "x-ms-client-request-id": [ - "d0b5bef7-64f6-44bc-847d-37e0cd1f7c8f" + "93186520-9805-4cdb-9942-f7dfcd2e7111" ], "OData-Version": [ "4.0" @@ -345,88 +345,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-correlation-request-id": [ - "ccb7129d-2340-44d6-a46f-2e3e96773470" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T225817Z:ccb7129d-2340-44d6-a46f-2e3e96773470" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 22:58:17 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/4e6c5744-0c0d-4eda-81fc-03ac8b47695e?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2YzU3NDQtMGMwZC00ZWRhLTgxZmMtMDNhYzhiNDc2OTVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "f305fa59-d12d-4e57-b0cc-02b1048aadcd" - ], - "x-ms-client-request-id": [ - "681690bf-52a3-4d4a-9197-94a0262bdbeb" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11999" ], "x-ms-correlation-request-id": [ - "423e749c-db7c-463c-b10c-8d50290abd32" + "d8e91725-35b9-48ac-bca7-24b797085153" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225827Z:423e749c-db7c-463c-b10c-8d50290abd32" + "WESTUS:20201027T023637Z:d8e91725-35b9-48ac-bca7-24b797085153" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:27 GMT" + "Tue, 27 Oct 2020 02:36:36 GMT" ], "Content-Length": [ "78" @@ -442,16 +373,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/4e6c5744-0c0d-4eda-81fc-03ac8b47695e?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2YzU3NDQtMGMwZC00ZWRhLTgxZmMtMDNhYzhiNDc2OTVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/d4d44f9f-420a-40b2-9d62-b99645df1e0f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDRkNDRmOWYtNDIwYS00MGIyLTlkNjItYjk5NjQ1ZGYxZTBmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -462,10 +393,10 @@ "no-cache" ], "x-ms-request-id": [ - "ca284735-494e-4a0c-bdc7-fd64dec89f1e" + "e80937ce-83c0-488c-96be-a9d6ecf427cc" ], "x-ms-client-request-id": [ - "6c976377-5a94-4c7c-870c-60aaf269e7ea" + "fab2fa52-b41f-4687-832e-652b944efa30" ], "OData-Version": [ "4.0" @@ -483,19 +414,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11998" ], "x-ms-correlation-request-id": [ - "5018e97b-9d3e-425b-9ac4-5b217a0211fa" + "d3fa18bf-fc9b-4ed5-9cd7-01324960cc1b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225838Z:5018e97b-9d3e-425b-9ac4-5b217a0211fa" + "WESTUS:20201027T023647Z:d3fa18bf-fc9b-4ed5-9cd7-01324960cc1b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:37 GMT" + "Tue, 27 Oct 2020 02:36:47 GMT" ], "Content-Length": [ "78" @@ -511,16 +442,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/4e6c5744-0c0d-4eda-81fc-03ac8b47695e?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGU2YzU3NDQtMGMwZC00ZWRhLTgxZmMtMDNhYzhiNDc2OTVlP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/d4d44f9f-420a-40b2-9d62-b99645df1e0f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDRkNDRmOWYtNDIwYS00MGIyLTlkNjItYjk5NjQ1ZGYxZTBmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -531,10 +462,10 @@ "no-cache" ], "x-ms-request-id": [ - "ab4ef9d6-eda4-4411-a9b1-16d675f4e05a" + "4fac7f2b-41a0-48c7-a0a2-c6541b2c432c" ], "x-ms-client-request-id": [ - "f7099450-d676-4c85-ae7a-06659267e186" + "2e72f79b-aba8-484d-9bc0-6cb178e574bc" ], "OData-Version": [ "4.0" @@ -552,19 +483,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11997" ], "x-ms-correlation-request-id": [ - "3cf0ce29-f2d1-4531-9cfb-f1f8718da4a2" + "a723b852-795a-43be-b40d-c48c1a865106" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225848Z:3cf0ce29-f2d1-4531-9cfb-f1f8718da4a2" + "WESTUS:20201027T023658Z:a723b852-795a-43be-b40d-c48c1a865106" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:48 GMT" + "Tue, 27 Oct 2020 02:36:57 GMT" ], "Content-Length": [ "77" @@ -580,16 +511,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -600,10 +531,10 @@ "no-cache" ], "x-ms-request-id": [ - "4e3a0e7c-4f06-485d-9d3f-88661974cf1a" + "aadf826e-22b3-40fe-95fd-2eca79cafd0a" ], "x-ms-client-request-id": [ - "4a7b7857-180f-492c-841b-b071b50672ef" + "197cbbcc-63df-4130-9b0b-c46180fb68ec" ], "OData-Version": [ "4.0" @@ -624,16 +555,16 @@ "49" ], "x-ms-correlation-request-id": [ - "9af2c661-7fa7-48a5-b285-31955282f7cd" + "f96d76bd-f630-4ebe-88f8-047b6649af81" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225849Z:9af2c661-7fa7-48a5-b285-31955282f7cd" + "WESTUS:20201027T023659Z:f96d76bd-f630-4ebe-88f8-047b6649af81" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:49 GMT" + "Tue, 27 Oct 2020 02:36:58 GMT" ], "Content-Length": [ "397" @@ -645,26 +576,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1282\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile2066\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/checkResourceUsage?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/checkResourceUsage?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c66b0709-46b8-43a3-b672-4abe671687e1" + "5907dbdb-b7b4-499b-bb09-5f47d8243b3e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -675,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "3c0eda71-5aa5-4ed9-b5a0-f23d0ace01a4" + "11b74bb5-7097-4b3d-b1af-9198b4791dd7" ], "x-ms-client-request-id": [ - "c66b0709-46b8-43a3-b672-4abe671687e1" + "5907dbdb-b7b4-499b-bb09-5f47d8243b3e" ], "OData-Version": [ "4.0" @@ -699,16 +630,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "608ada03-16ee-4465-9ead-b6eb65656b17" + "b06b079b-43ca-4745-a857-db1262a76063" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225852Z:608ada03-16ee-4465-9ead-b6eb65656b17" + "WESTUS:20201027T023702Z:b06b079b-43ca-4745-a857-db1262a76063" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:51 GMT" + "Tue, 27 Oct 2020 02:37:01 GMT" ], "Content-Length": [ "112" @@ -724,22 +655,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/checkResourceUsage?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyL2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/checkResourceUsage?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2L2NoZWNrUmVzb3VyY2VVc2FnZT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f9f57fbe-cb04-41b2-8e07-63157ba84782" + "372892a6-3320-4d9e-9385-4dd087e9ba6e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -750,10 +681,10 @@ "no-cache" ], "x-ms-request-id": [ - "4033ef2e-cc32-4b53-9995-3af34a77be94" + "4ae20ab6-d518-44ae-85e8-e9b985fe6eec" ], "x-ms-client-request-id": [ - "f9f57fbe-cb04-41b2-8e07-63157ba84782" + "372892a6-3320-4d9e-9385-4dd087e9ba6e" ], "OData-Version": [ "4.0" @@ -774,16 +705,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "cfd4bf28-5ac4-4992-907b-2a13d443b87b" + "ea8ede15-1f02-411f-8902-83858731ff33" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225919Z:cfd4bf28-5ac4-4992-907b-2a13d443b87b" + "WESTUS:20201027T023731Z:ea8ede15-1f02-411f-8902-83858731ff33" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:19 GMT" + "Tue, 27 Oct 2020 02:37:30 GMT" ], "Content-Length": [ "112" @@ -799,22 +730,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/endpoints/endpoint8829?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyL2VuZHBvaW50cy9lbmRwb2ludDg4Mjk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/endpoints/endpoint4249?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2L2VuZHBvaW50cy9lbmRwb2ludDQyNDk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": [ - "4317b3ed-0dd1-4540-a9cf-580e0f59cc18" + "542a549c-0cc5-49da-8235-1408264cdfa0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -834,13 +765,13 @@ "10" ], "x-ms-request-id": [ - "109fe586-18b6-4aca-8427-ecdde80cbfaf" + "401c4b8d-cf10-4a5d-8ddf-7420baea2eea" ], "x-ms-client-request-id": [ - "4317b3ed-0dd1-4540-a9cf-580e0f59cc18" + "542a549c-0cc5-49da-8235-1408264cdfa0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/51be0aca-7b86-4cdb-a237-c7b8fbd9cb43?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/b6a4af07-ae38-427f-82dc-42b83cd64ca0?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -861,16 +792,16 @@ "99" ], "x-ms-correlation-request-id": [ - "fe32ac96-1fbe-4b2e-9f19-7a2d179959f0" + "530efd5b-57b9-4e29-961d-f17fe904fc6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225856Z:fe32ac96-1fbe-4b2e-9f19-7a2d179959f0" + "WESTUS:20201027T023707Z:530efd5b-57b9-4e29-961d-f17fe904fc6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:58:56 GMT" + "Tue, 27 Oct 2020 02:37:07 GMT" ], "Content-Length": [ "1234" @@ -882,20 +813,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8829\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/endpoints/endpoint8829\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8829.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4249\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/endpoints/endpoint4249\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4249.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/51be0aca-7b86-4cdb-a237-c7b8fbd9cb43?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTFiZTBhY2EtN2I4Ni00Y2RiLWEyMzctYzdiOGZiZDljYjQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/b6a4af07-ae38-427f-82dc-42b83cd64ca0?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjZhNGFmMDctYWUzOC00MjdmLTgyZGMtNDJiODNjZDY0Y2EwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -906,10 +837,10 @@ "no-cache" ], "x-ms-request-id": [ - "0aca21a0-def8-4d80-9474-bf6b4768c4e6" + "56098e70-927f-40d3-aeba-87d5f05b0fc9" ], "x-ms-client-request-id": [ - "6e617724-3069-486f-a211-edac9a389441" + "7cda3305-d2c0-44e7-a008-7b9b86d54775" ], "OData-Version": [ "4.0" @@ -927,19 +858,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11996" ], "x-ms-correlation-request-id": [ - "44b2185d-5ae2-43f0-9a79-cdd382ed0989" + "7657bd06-621d-461c-bea8-539969b03c8c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225907Z:44b2185d-5ae2-43f0-9a79-cdd382ed0989" + "WESTUS:20201027T023718Z:7657bd06-621d-461c-bea8-539969b03c8c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:06 GMT" + "Tue, 27 Oct 2020 02:37:17 GMT" ], "Content-Length": [ "78" @@ -955,16 +886,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/operationresults/51be0aca-7b86-4cdb-a237-c7b8fbd9cb43?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNTFiZTBhY2EtN2I4Ni00Y2RiLWEyMzctYzdiOGZiZDljYjQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/operationresults/b6a4af07-ae38-427f-82dc-42b83cd64ca0?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjZhNGFmMDctYWUzOC00MjdmLTgyZGMtNDJiODNjZDY0Y2EwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -975,10 +906,10 @@ "no-cache" ], "x-ms-request-id": [ - "8976bdc4-0719-42a6-a955-476b5353f887" + "ff1a1a3d-d7b4-44b5-bb3f-973d0fb714eb" ], "x-ms-client-request-id": [ - "25021293-25ce-4127-8937-dc10c7e7915a" + "5c461afb-351c-4de2-8779-18c21d5cf614" ], "OData-Version": [ "4.0" @@ -996,19 +927,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11995" ], "x-ms-correlation-request-id": [ - "300efdbc-61f1-498c-81b6-526d36dd31ba" + "f4cfb6df-96db-4886-9e3b-06c18ae22827" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225917Z:300efdbc-61f1-498c-81b6-526d36dd31ba" + "WESTUS:20201027T023728Z:f4cfb6df-96db-4886-9e3b-06c18ae22827" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:16 GMT" + "Tue, 27 Oct 2020 02:37:27 GMT" ], "Content-Length": [ "77" @@ -1024,16 +955,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/endpoints/endpoint8829?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMjgyL2VuZHBvaW50cy9lbmRwb2ludDg4Mjk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/endpoints/endpoint4249?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyMDY2L2VuZHBvaW50cy9lbmRwb2ludDQyNDk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1044,10 +975,10 @@ "no-cache" ], "x-ms-request-id": [ - "c5fb1153-760d-4a0d-a030-7ba3ea669e71" + "2eed33cd-1663-4d2b-8b32-4260e6b84638" ], "x-ms-client-request-id": [ - "7ebea8ab-aa9d-46b3-8caf-56cfab3f95d2" + "8fe573f4-6786-4411-aaa5-ac763be57641" ], "OData-Version": [ "4.0" @@ -1068,16 +999,16 @@ "49" ], "x-ms-correlation-request-id": [ - "db4263aa-958d-4e21-a801-e2a433f3d95a" + "00802e21-2b13-434c-9e77-fe4efb2159e8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225918Z:db4263aa-958d-4e21-a801-e2a433f3d95a" + "WESTUS:20201027T023729Z:00802e21-2b13-434c-9e77-fe4efb2159e8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:17 GMT" + "Tue, 27 Oct 2020 02:37:28 GMT" ], "Content-Length": [ "1234" @@ -1089,25 +1020,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint8829\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556/providers/Microsoft.Cdn/profiles/profile1282/endpoints/endpoint8829\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint8829.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint4249\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174/providers/Microsoft.Cdn/profiles/profile2066/endpoints/endpoint4249\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint4249.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 \"originHostHeader\": null,\r\n \"priority\": null,\r\n \"weight\": null,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8556?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NTU2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4174?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0MTc0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e525e6f2-cca8-4f12-a894-9e830543de75" + "aab51e72-3182-422c-8070-12b90f2db6c9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1119,7 +1050,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1128,13 +1059,13 @@ "14999" ], "x-ms-request-id": [ - "60e35950-a205-4731-9764-5db60a1de565" + "9ab49948-77ac-4f2d-b53b-87d722630cd5" ], "x-ms-correlation-request-id": [ - "60e35950-a205-4731-9764-5db60a1de565" + "9ab49948-77ac-4f2d-b53b-87d722630cd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225919Z:60e35950-a205-4731-9764-5db60a1de565" + "WESTUS:20201027T023731Z:9ab49948-77ac-4f2d-b53b-87d722630cd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1143,7 +1074,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:19 GMT" + "Tue, 27 Oct 2020 02:37:30 GMT" ], "Expires": [ "-1" @@ -1156,15 +1087,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1176,7 +1107,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1185,13 +1116,13 @@ "11999" ], "x-ms-request-id": [ - "6bacee95-a76b-4fbd-9853-741a20dce1ad" + "cfb7547d-0ea4-4580-934a-6b1aed40b819" ], "x-ms-correlation-request-id": [ - "6bacee95-a76b-4fbd-9853-741a20dce1ad" + "cfb7547d-0ea4-4580-934a-6b1aed40b819" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225935Z:6bacee95-a76b-4fbd-9853-741a20dce1ad" + "WESTUS:20201027T023746Z:cfb7547d-0ea4-4580-934a-6b1aed40b819" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1200,7 +1131,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:34 GMT" + "Tue, 27 Oct 2020 02:37:46 GMT" ], "Expires": [ "-1" @@ -1213,15 +1144,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1233,7 +1164,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1242,13 +1173,13 @@ "11998" ], "x-ms-request-id": [ - "0140cd1d-546b-481d-8581-5123da04da62" + "6ea509d9-4466-46eb-9e25-3961cc229e8a" ], "x-ms-correlation-request-id": [ - "0140cd1d-546b-481d-8581-5123da04da62" + "6ea509d9-4466-46eb-9e25-3961cc229e8a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T225950Z:0140cd1d-546b-481d-8581-5123da04da62" + "WESTUS:20201027T023801Z:6ea509d9-4466-46eb-9e25-3961cc229e8a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1257,7 +1188,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 22:59:49 GMT" + "Tue, 27 Oct 2020 02:38:01 GMT" ], "Expires": [ "-1" @@ -1270,15 +1201,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1290,7 +1221,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1299,13 +1230,13 @@ "11997" ], "x-ms-request-id": [ - "678e4348-649f-448c-afde-b8cfa0fe2892" + "ffa59737-ddee-4c75-980c-77a7636fd960" ], "x-ms-correlation-request-id": [ - "678e4348-649f-448c-afde-b8cfa0fe2892" + "ffa59737-ddee-4c75-980c-77a7636fd960" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230005Z:678e4348-649f-448c-afde-b8cfa0fe2892" + "WESTUS:20201027T023816Z:ffa59737-ddee-4c75-980c-77a7636fd960" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1314,7 +1245,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:00:04 GMT" + "Tue, 27 Oct 2020 02:38:16 GMT" ], "Expires": [ "-1" @@ -1327,15 +1258,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1347,7 +1278,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1356,13 +1287,13 @@ "11996" ], "x-ms-request-id": [ - "c4b1964c-8f21-4f4a-ba7e-36affcf29b41" + "9ada22af-4644-4058-8f4b-713a23a7c3c4" ], "x-ms-correlation-request-id": [ - "c4b1964c-8f21-4f4a-ba7e-36affcf29b41" + "9ada22af-4644-4058-8f4b-713a23a7c3c4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230020Z:c4b1964c-8f21-4f4a-ba7e-36affcf29b41" + "WESTUS:20201027T023831Z:9ada22af-4644-4058-8f4b-713a23a7c3c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1371,7 +1302,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:00:19 GMT" + "Tue, 27 Oct 2020 02:38:31 GMT" ], "Expires": [ "-1" @@ -1384,15 +1315,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1404,7 +1335,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1413,13 +1344,13 @@ "11995" ], "x-ms-request-id": [ - "28c130e5-b21a-4110-a0fc-fbdcfa76ab80" + "8536f0f6-5dc5-43bf-b1dd-47674b8077c9" ], "x-ms-correlation-request-id": [ - "28c130e5-b21a-4110-a0fc-fbdcfa76ab80" + "8536f0f6-5dc5-43bf-b1dd-47674b8077c9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230035Z:28c130e5-b21a-4110-a0fc-fbdcfa76ab80" + "WESTUS:20201027T023846Z:8536f0f6-5dc5-43bf-b1dd-47674b8077c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1428,7 +1359,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:00:34 GMT" + "Tue, 27 Oct 2020 02:38:46 GMT" ], "Expires": [ "-1" @@ -1441,15 +1372,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1461,7 +1392,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1470,13 +1401,13 @@ "11994" ], "x-ms-request-id": [ - "5f22ad57-d28c-4a01-af08-92eda4999cd8" + "6a5f2647-33cf-4701-8809-f23aea8b27d2" ], "x-ms-correlation-request-id": [ - "5f22ad57-d28c-4a01-af08-92eda4999cd8" + "6a5f2647-33cf-4701-8809-f23aea8b27d2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230050Z:5f22ad57-d28c-4a01-af08-92eda4999cd8" + "WESTUS:20201027T023901Z:6a5f2647-33cf-4701-8809-f23aea8b27d2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1485,7 +1416,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:00:50 GMT" + "Tue, 27 Oct 2020 02:39:01 GMT" ], "Expires": [ "-1" @@ -1498,15 +1429,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1518,7 +1449,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1527,13 +1458,13 @@ "11993" ], "x-ms-request-id": [ - "490acbaf-4fe8-472a-80c1-a6e0cf18bcb3" + "cbf5f51b-6378-483f-93b2-9b83c4fd355e" ], "x-ms-correlation-request-id": [ - "490acbaf-4fe8-472a-80c1-a6e0cf18bcb3" + "cbf5f51b-6378-483f-93b2-9b83c4fd355e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230105Z:490acbaf-4fe8-472a-80c1-a6e0cf18bcb3" + "WESTUS:20201027T023916Z:cbf5f51b-6378-483f-93b2-9b83c4fd355e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1542,7 +1473,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:01:05 GMT" + "Tue, 27 Oct 2020 02:39:16 GMT" ], "Expires": [ "-1" @@ -1555,15 +1486,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1575,7 +1506,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1584,13 +1515,13 @@ "11992" ], "x-ms-request-id": [ - "4b2dab17-52c6-4a08-ae58-3826bb79b47b" + "c234ddd3-98b8-4f4a-8dce-bbc5cfe4fadb" ], "x-ms-correlation-request-id": [ - "4b2dab17-52c6-4a08-ae58-3826bb79b47b" + "c234ddd3-98b8-4f4a-8dce-bbc5cfe4fadb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230120Z:4b2dab17-52c6-4a08-ae58-3826bb79b47b" + "WESTUS:20201027T023931Z:c234ddd3-98b8-4f4a-8dce-bbc5cfe4fadb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1599,7 +1530,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:01:19 GMT" + "Tue, 27 Oct 2020 02:39:31 GMT" ], "Expires": [ "-1" @@ -1612,15 +1543,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1632,7 +1563,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1641,13 +1572,13 @@ "11991" ], "x-ms-request-id": [ - "7367a2a3-9dff-4c6b-9ae0-c4d6fc1c9cf4" + "00c074fb-566d-47f7-a39f-c1404624ddc5" ], "x-ms-correlation-request-id": [ - "7367a2a3-9dff-4c6b-9ae0-c4d6fc1c9cf4" + "00c074fb-566d-47f7-a39f-c1404624ddc5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230135Z:7367a2a3-9dff-4c6b-9ae0-c4d6fc1c9cf4" + "WESTUS:20201027T023946Z:00c074fb-566d-47f7-a39f-c1404624ddc5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1656,7 +1587,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:01:34 GMT" + "Tue, 27 Oct 2020 02:39:45 GMT" ], "Expires": [ "-1" @@ -1669,15 +1600,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1689,7 +1620,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1698,13 +1629,13 @@ "11990" ], "x-ms-request-id": [ - "c1e76adc-b743-410f-b383-0280e1115f15" + "11edb996-57ad-43c8-ad72-abd0bc4bf032" ], "x-ms-correlation-request-id": [ - "c1e76adc-b743-410f-b383-0280e1115f15" + "11edb996-57ad-43c8-ad72-abd0bc4bf032" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230150Z:c1e76adc-b743-410f-b383-0280e1115f15" + "WESTUS:20201027T024001Z:11edb996-57ad-43c8-ad72-abd0bc4bf032" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1713,7 +1644,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:01:49 GMT" + "Tue, 27 Oct 2020 02:40:00 GMT" ], "Expires": [ "-1" @@ -1726,15 +1657,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1749,13 +1680,13 @@ "11989" ], "x-ms-request-id": [ - "d0cd0066-0448-4c7a-9d15-7a91b2d4c88b" + "1e890d67-36aa-4b4e-ba66-f0e9c7d61345" ], "x-ms-correlation-request-id": [ - "d0cd0066-0448-4c7a-9d15-7a91b2d4c88b" + "1e890d67-36aa-4b4e-ba66-f0e9c7d61345" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230205Z:d0cd0066-0448-4c7a-9d15-7a91b2d4c88b" + "WESTUS:20201027T024016Z:1e890d67-36aa-4b4e-ba66-f0e9c7d61345" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1764,7 +1695,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:04 GMT" + "Tue, 27 Oct 2020 02:40:15 GMT" ], "Expires": [ "-1" @@ -1777,15 +1708,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODU1Ni1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFUxTmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDE3NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOREUzTkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1800,13 +1731,13 @@ "11988" ], "x-ms-request-id": [ - "453ca6b6-a4ff-4d33-9f16-a3351d7aaf96" + "7631d53b-c3e0-4347-b667-0541c18af506" ], "x-ms-correlation-request-id": [ - "453ca6b6-a4ff-4d33-9f16-a3351d7aaf96" + "7631d53b-c3e0-4347-b667-0541c18af506" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230205Z:453ca6b6-a4ff-4d33-9f16-a3351d7aaf96" + "WESTUS:20201027T024016Z:7631d53b-c3e0-4347-b667-0541c18af506" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1815,7 +1746,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:04 GMT" + "Tue, 27 Oct 2020 02:40:15 GMT" ], "Expires": [ "-1" @@ -1830,11 +1761,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup8556" + "cdnResourceGroup4174" ], "ProfileCheckUsageTest": [ - "profile1282", - "endpoint8829" + "profile2066", + "endpoint4249" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCreateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCreateTest.json index beb16b742223b..6c8cff231e131 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCreateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileCreateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4b39a7b3-1c58-4bf8-8d6c-1cf251944203" + "58198f14-5cb9-4709-9e7c-dbb9bb4af439" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "52c8af39-11ad-48d7-baef-a39b8ca2984f" + "60377a76-23ae-43fc-88fc-3ad0f6793081" ], "x-ms-correlation-request-id": [ - "52c8af39-11ad-48d7-baef-a39b8ca2984f" + "60377a76-23ae-43fc-88fc-3ad0f6793081" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231533Z:52c8af39-11ad-48d7-baef-a39b8ca2984f" + "WESTUS:20201027T024922Z:60377a76-23ae-43fc-88fc-3ad0f6793081" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:15:32 GMT" + "Tue, 27 Oct 2020 02:49:21 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478\",\r\n \"name\": \"cdnResourceGroup8478\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582\",\r\n \"name\": \"cdnResourceGroup4582\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile4988?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0OTg4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile4793?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "4f3ff2c6-9fd2-499a-9174-919c6783b299" + "55b1a12f-9faa-47d1-aed5-7b30e732f43e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "851524b2-c917-45ae-86a4-e2670295509f" + "00e7ea79-a13a-497d-844f-934ec17eb313" ], "x-ms-client-request-id": [ - "4f3ff2c6-9fd2-499a-9174-919c6783b299" + "55b1a12f-9faa-47d1-aed5-7b30e732f43e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/0ef015f5-c912-4135-af01-6fd7add06703?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/5fdbff0b-434a-42f0-b435-e9c878adb12f?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -126,19 +126,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "24" + "23" ], "x-ms-correlation-request-id": [ - "9dd0473b-ea58-44c5-8bfe-b418f3a53862" + "9300b1b8-13c0-49d3-b574-ff97a08012b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231539Z:9dd0473b-ea58-44c5-8bfe-b418f3a53862" + "WESTUS:20201027T024928Z:9300b1b8-13c0-49d3-b574-ff97a08012b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:15:38 GMT" + "Tue, 27 Oct 2020 02:49:28 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile4988\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile4793\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/0ef015f5-c912-4135-af01-6fd7add06703?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGVmMDE1ZjUtYzkxMi00MTM1LWFmMDEtNmZkN2FkZDA2NzAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/5fdbff0b-434a-42f0-b435-e9c878adb12f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWZkYmZmMGItNDM0YS00MmYwLWI0MzUtZTljODc4YWRiMTJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "bd0539da-c2ed-4ccc-8f32-53916244dd8e" + "c9fcaceb-142b-4ed0-9da5-6d0c89d7ec7f" ], "x-ms-client-request-id": [ - "fa3f0bf7-ce6f-4c25-a3cb-81bc8e423c1e" + "81fad11a-8c52-4cef-aeb0-944bd1787be5" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11995" ], "x-ms-correlation-request-id": [ - "28137840-bb2a-4ade-98d2-6451f81ad744" + "ed4ca584-bb6f-40dd-ac6a-d9f88f1907bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231549Z:28137840-bb2a-4ade-98d2-6451f81ad744" + "WESTUS:20201027T024938Z:ed4ca584-bb6f-40dd-ac6a-d9f88f1907bc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:15:49 GMT" + "Tue, 27 Oct 2020 02:49:38 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/0ef015f5-c912-4135-af01-6fd7add06703?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGVmMDE1ZjUtYzkxMi00MTM1LWFmMDEtNmZkN2FkZDA2NzAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/5fdbff0b-434a-42f0-b435-e9c878adb12f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWZkYmZmMGItNDM0YS00MmYwLWI0MzUtZTljODc4YWRiMTJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "f1e47991-3fce-4ca8-b345-b5ad58a70b13" + "765139aa-d6ca-42d5-ab1f-1c053d2d07d1" ], "x-ms-client-request-id": [ - "5e7843fc-1a71-4eeb-8573-0cb94d585574" + "75ab444c-7b5d-465c-9ec0-e991ec060f0c" ], "OData-Version": [ "4.0" @@ -264,19 +264,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11994" ], "x-ms-correlation-request-id": [ - "408b5b71-c13c-429f-8896-fc517c15f9c1" + "2a3c861b-ca46-4694-bbb5-47cb87cf89f7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231600Z:408b5b71-c13c-429f-8896-fc517c15f9c1" + "WESTUS:20201027T024948Z:2a3c861b-ca46-4694-bbb5-47cb87cf89f7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:15:59 GMT" + "Tue, 27 Oct 2020 02:49:48 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/0ef015f5-c912-4135-af01-6fd7add06703?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGVmMDE1ZjUtYzkxMi00MTM1LWFmMDEtNmZkN2FkZDA2NzAzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/5fdbff0b-434a-42f0-b435-e9c878adb12f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWZkYmZmMGItNDM0YS00MmYwLWI0MzUtZTljODc4YWRiMTJmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "7eee2c2d-d4dd-4ce2-bc28-fcbfe02766d3" + "c45309ec-4ec1-405b-93a0-22db41a6b1ef" ], "x-ms-client-request-id": [ - "e64aa3ca-c522-4797-9bd3-7f2fa5b3d849" + "b0cf6921-d134-416b-9667-25327d5cb5e3" ], "OData-Version": [ "4.0" @@ -333,19 +333,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11993" ], "x-ms-correlation-request-id": [ - "0d8d308d-9114-42cb-a6f7-72cde9ddf277" + "4a7f8929-7000-432e-8a64-d0a070707473" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231610Z:0d8d308d-9114-42cb-a6f7-72cde9ddf277" + "WESTUS:20201027T024959Z:4a7f8929-7000-432e-8a64-d0a070707473" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:09 GMT" + "Tue, 27 Oct 2020 02:49:58 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile4988?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0OTg4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile4793?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "017869fe-5d33-4b0a-9e7a-faae3c6bf996" + "bd000215-c66b-43de-99a1-00ffdae64d55" ], "x-ms-client-request-id": [ - "c934c778-0476-4d54-a2f1-3aae3c9b123c" + "f25fce40-3074-4f06-ae5e-525283fd60cc" ], "OData-Version": [ "4.0" @@ -402,19 +402,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "49" + "48" ], "x-ms-correlation-request-id": [ - "e0766d15-79b7-4394-9537-fc81601c2ad4" + "104b36dd-21ed-49ad-a770-1c215f185a41" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231611Z:e0766d15-79b7-4394-9537-fc81601c2ad4" + "WESTUS:20201027T025000Z:104b36dd-21ed-49ad-a770-1c215f185a41" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:10 GMT" + "Tue, 27 Oct 2020 02:49:59 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile4988\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile4793\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile5256?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MjU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile3954?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "76eabca4-5e3a-402d-9c38-63016e15751e" + "db57eacc-d1c3-4eac-94fe-875a0427e7ec" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -465,13 +465,13 @@ "10" ], "x-ms-request-id": [ - "7d6e9606-fd47-41be-ba91-fa3831f963df" + "1c8617a0-92b7-4452-804b-f1c8d241cb99" ], "x-ms-client-request-id": [ - "76eabca4-5e3a-402d-9c38-63016e15751e" + "db57eacc-d1c3-4eac-94fe-875a0427e7ec" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/24e86432-b64b-4f59-9b72-65222d071cac?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/014496d1-b21b-4fd6-bfeb-7f0d35095bd0?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -489,19 +489,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "23" + "22" ], "x-ms-correlation-request-id": [ - "9740d31f-8a2d-4800-841c-ab9cbff9f219" + "0ace66f1-cbdb-4e47-ad4b-b3de7151fa10" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231616Z:9740d31f-8a2d-4800-841c-ab9cbff9f219" + "WESTUS:20201027T025004Z:0ace66f1-cbdb-4e47-ad4b-b3de7151fa10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:16 GMT" + "Tue, 27 Oct 2020 02:50:03 GMT" ], "Content-Length": [ "397" @@ -513,20 +513,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5256\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile5256\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile3954\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile3954\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/24e86432-b64b-4f59-9b72-65222d071cac?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMjRlODY0MzItYjY0Yi00ZjU5LTliNzItNjUyMjJkMDcxY2FjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/014496d1-b21b-4fd6-bfeb-7f0d35095bd0?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDE0NDk2ZDEtYjIxYi00ZmQ2LWJmZWItN2YwZDM1MDk1YmQwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "72145cac-7cda-4d6f-99e9-b28f4bf21507" + "128c488c-291e-4552-b892-f09e6d74e6f6" ], "x-ms-client-request-id": [ - "bea8fe64-6809-44db-af9c-eac04bc9d13c" + "320eb438-7b6a-4595-af07-84a0b0c943a6" ], "OData-Version": [ "4.0" @@ -558,19 +558,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11992" ], "x-ms-correlation-request-id": [ - "8b29b87d-d7e9-49b6-a307-377bdb816f18" + "8ade5f9b-b40f-4f5f-bff9-946a60d3f5aa" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231626Z:8b29b87d-d7e9-49b6-a307-377bdb816f18" + "WESTUS:20201027T025014Z:8ade5f9b-b40f-4f5f-bff9-946a60d3f5aa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:26 GMT" + "Tue, 27 Oct 2020 02:50:14 GMT" ], "Content-Length": [ "77" @@ -586,16 +586,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile5256?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1MjU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile3954?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "119e358c-c23b-4cba-a3b6-431bb5c5550a" + "cca0e060-f43f-44a6-b956-a368d051536a" ], "x-ms-client-request-id": [ - "07454965-9ac6-428f-b78a-d3c8bc431de9" + "beb23eab-c345-47a9-b256-da1595ad6fa1" ], "OData-Version": [ "4.0" @@ -627,19 +627,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "48" + "47" ], "x-ms-correlation-request-id": [ - "d613f23a-fbba-436c-b678-3a088891b643" + "e1653009-f6e9-43ff-9f62-297430babb10" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231627Z:d613f23a-fbba-436c-b678-3a088891b643" + "WESTUS:20201027T025015Z:e1653009-f6e9-43ff-9f62-297430babb10" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:27 GMT" + "Tue, 27 Oct 2020 02:50:15 GMT" ], "Content-Length": [ "396" @@ -651,26 +651,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5256\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile5256\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile3954\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile3954\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3643?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNjQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile9621?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "3de1c90a-f5b6-4626-8cb4-9b0777818161" + "241c71e1-784b-4003-94d8-30a64415bc90" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -690,13 +690,13 @@ "10" ], "x-ms-request-id": [ - "33c4a991-fcd0-477a-aff1-81e3790c6a52" + "c608aa4a-8697-41e5-919d-ee6d946d750f" ], "x-ms-client-request-id": [ - "3de1c90a-f5b6-4626-8cb4-9b0777818161" + "241c71e1-784b-4003-94d8-30a64415bc90" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/f07de2e8-dcba-4c7d-a27d-51253eef9793?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/d8aff3c8-3b05-4bdb-af81-0a9b143c6912?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -714,19 +714,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "22" + "21" ], "x-ms-correlation-request-id": [ - "0ac050d0-c3ec-4f45-b863-adda5b68cc95" + "dd12f772-f459-4480-b52e-b2055f01d4a0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231631Z:0ac050d0-c3ec-4f45-b863-adda5b68cc95" + "WESTUS:20201027T025019Z:dd12f772-f459-4480-b52e-b2055f01d4a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:31 GMT" + "Tue, 27 Oct 2020 02:50:18 GMT" ], "Content-Length": [ "400" @@ -738,20 +738,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3643\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3643\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\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}", + "ResponseBody": "{\r\n \"name\": \"profile9621\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile9621\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/f07de2e8-dcba-4c7d-a27d-51253eef9793?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZjA3ZGUyZTgtZGNiYS00YzdkLWEyN2QtNTEyNTNlZWY5NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/d8aff3c8-3b05-4bdb-af81-0a9b143c6912?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDhhZmYzYzgtM2IwNS00YmRiLWFmODEtMGE5YjE0M2M2OTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -762,10 +762,10 @@ "no-cache" ], "x-ms-request-id": [ - "0060067f-2fae-499e-985f-bb793af92227" + "c0cfe9be-0931-4a60-a2ca-c907fde4e28a" ], "x-ms-client-request-id": [ - "9107ece7-fcd7-4cb7-9ff2-25993c9eab9d" + "130c42aa-3b64-417f-b123-7d87dc504e9e" ], "OData-Version": [ "4.0" @@ -783,19 +783,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11991" ], "x-ms-correlation-request-id": [ - "10cd6ce2-cec2-4bb2-abdc-c2a11970e39a" + "6113c62c-7d00-4631-a77d-a21dee428e99" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231642Z:10cd6ce2-cec2-4bb2-abdc-c2a11970e39a" + "WESTUS:20201027T025029Z:6113c62c-7d00-4631-a77d-a21dee428e99" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:41 GMT" + "Tue, 27 Oct 2020 02:50:28 GMT" ], "Content-Length": [ "78" @@ -811,16 +811,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/f07de2e8-dcba-4c7d-a27d-51253eef9793?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZjA3ZGUyZTgtZGNiYS00YzdkLWEyN2QtNTEyNTNlZWY5NzkzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/d8aff3c8-3b05-4bdb-af81-0a9b143c6912?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDhhZmYzYzgtM2IwNS00YmRiLWFmODEtMGE5YjE0M2M2OTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -831,10 +831,10 @@ "no-cache" ], "x-ms-request-id": [ - "51fd056a-82e6-4b71-9d7d-b00f90ef5d88" + "50ced1d2-99aa-4b48-a179-0c9980094c65" ], "x-ms-client-request-id": [ - "e56e6839-ad9d-4b30-825a-26e4f80becf1" + "d990617a-f0d6-4ff9-ac32-e7a0129102ee" ], "OData-Version": [ "4.0" @@ -852,19 +852,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11990" ], "x-ms-correlation-request-id": [ - "99e7672d-55fe-4411-bea8-d1101b295e2f" + "4eda8926-8ed1-4b30-a537-2424cf27c568" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231652Z:99e7672d-55fe-4411-bea8-d1101b295e2f" + "WESTUS:20201027T025039Z:4eda8926-8ed1-4b30-a537-2424cf27c568" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:52 GMT" + "Tue, 27 Oct 2020 02:50:39 GMT" ], "Content-Length": [ "77" @@ -880,16 +880,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3643?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNjQzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile9621?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU5NjIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -900,10 +900,10 @@ "no-cache" ], "x-ms-request-id": [ - "0ecb13e9-7c3a-4fa3-93da-c04e3bfafcc2" + "5c09f47b-a2cf-4a3c-ab96-616aa8a14d0f" ], "x-ms-client-request-id": [ - "098a071a-b506-4db4-982d-dbc80b0920e9" + "496b06d6-999b-4f63-afec-682e9ba696a8" ], "OData-Version": [ "4.0" @@ -921,19 +921,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "47" + "46" ], "x-ms-correlation-request-id": [ - "395288de-e5e6-4703-b919-46496eca01d5" + "4bd46df3-2eb5-4fc4-8214-10928475b3d5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231653Z:395288de-e5e6-4703-b919-46496eca01d5" + "WESTUS:20201027T025040Z:4bd46df3-2eb5-4fc4-8214-10928475b3d5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:52 GMT" + "Tue, 27 Oct 2020 02:50:40 GMT" ], "Content-Length": [ "399" @@ -945,26 +945,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3643\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3643\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\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}", + "ResponseBody": "{\r\n \"name\": \"profile9621\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile9621\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key5\": \"value5\",\r\n \"key6\": \"value6\"\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3770?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNzcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile6801?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2ODAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"tags\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5c83f525-fdc4-4462-8cb3-e70ff58242bc" + "243bf439-709d-40e7-9538-4522ad1362dc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -984,13 +984,13 @@ "10" ], "x-ms-request-id": [ - "2a05634c-88a2-406c-b339-895c75c89911" + "6b853010-fce6-4677-ba1e-c37bba1622b1" ], "x-ms-client-request-id": [ - "5c83f525-fdc4-4462-8cb3-e70ff58242bc" + "243bf439-709d-40e7-9538-4522ad1362dc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1008,19 +1008,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "21" + "20" ], "x-ms-correlation-request-id": [ - "3a0cff73-6ea4-4454-9ea6-c2de5c9ffe5b" + "68031571-8a27-4bcf-8eae-201b767f1bc4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231656Z:3a0cff73-6ea4-4454-9ea6-c2de5c9ffe5b" + "WESTUS:20201027T025043Z:68031571-8a27-4bcf-8eae-201b767f1bc4" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:16:56 GMT" + "Tue, 27 Oct 2020 02:50:43 GMT" ], "Content-Length": [ "397" @@ -1032,26 +1032,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3770\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3770\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile6801\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile6801\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3770?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNzcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile6801?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2ODAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Verizon\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9abfc86b-259a-4b60-aa83-ca3994b3ce00" + "82dbfa10-7858-4acb-87d0-89c64c6192e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1071,13 +1071,13 @@ "gateway" ], "x-ms-request-id": [ - "621394ed-1402-48ba-b898-765e033ab5e8" + "7ea7b7f0-806c-4b19-b7c5-fc9bbcd58daa" ], "x-ms-correlation-request-id": [ - "621394ed-1402-48ba-b898-765e033ab5e8" + "7ea7b7f0-806c-4b19-b7c5-fc9bbcd58daa" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231749Z:621394ed-1402-48ba-b898-765e033ab5e8" + "WESTUS:20201027T025136Z:7ea7b7f0-806c-4b19-b7c5-fc9bbcd58daa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1086,7 +1086,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:48 GMT" + "Tue, 27 Oct 2020 02:51:35 GMT" ], "Content-Length": [ "266" @@ -1098,20 +1098,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'profile3770' already exists in location 'eastus' in resource group 'cdnResourceGroup8478'. A resource with the same name cannot be created in location 'WestUs'. Please select a new resource name.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceLocation\",\r\n \"message\": \"The resource 'profile6801' already exists in location 'eastus' in resource group 'cdnResourceGroup4582'. A resource with the same name cannot be created in location 'WestUs'. Please select a new resource name.\"\r\n }\r\n}", "StatusCode": 409 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZhZmJmOGQtODU4ZS00Mzg3LTkyYWMtNDYwYmQ0MjIxZTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmE4MTAyMGItNDU4Zi00NmFmLWI4ZjUtODRmNWZmZjdlMzNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1122,10 +1122,10 @@ "no-cache" ], "x-ms-request-id": [ - "f796a0e6-db4e-4935-9710-e7de14168ee5" + "0a401af3-0365-4a67-b925-6440c1db11a5" ], "x-ms-client-request-id": [ - "1dc18eca-0af4-4914-939f-3342b63cd404" + "f77387dc-3a8c-4da7-8d03-4faeb8821b44" ], "OData-Version": [ "4.0" @@ -1143,19 +1143,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11989" ], "x-ms-correlation-request-id": [ - "b81990b5-f7b9-43dc-8720-5bb6574212ff" + "d08da0aa-ff2f-4975-84fc-ac89db953345" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231707Z:b81990b5-f7b9-43dc-8720-5bb6574212ff" + "WESTUS:20201027T025054Z:d08da0aa-ff2f-4975-84fc-ac89db953345" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:06 GMT" + "Tue, 27 Oct 2020 02:50:53 GMT" ], "Content-Length": [ "78" @@ -1171,16 +1171,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZhZmJmOGQtODU4ZS00Mzg3LTkyYWMtNDYwYmQ0MjIxZTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmE4MTAyMGItNDU4Zi00NmFmLWI4ZjUtODRmNWZmZjdlMzNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1191,10 +1191,10 @@ "no-cache" ], "x-ms-request-id": [ - "d3407871-11b4-41dd-8c0c-e6f56f3508f6" + "80cf2dc1-b19a-4e39-8526-925ad35f39af" ], "x-ms-client-request-id": [ - "d6291099-8cc7-4b7c-8ff0-0097911ae161" + "0a0b8fa0-7f99-4b48-9040-b30720b72603" ], "OData-Version": [ "4.0" @@ -1212,19 +1212,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11988" ], "x-ms-correlation-request-id": [ - "6c68d0bc-4b5a-4607-bf0c-30b716d0b94c" + "c46b252a-d06c-4456-86fa-a0805fb949f3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231717Z:6c68d0bc-4b5a-4607-bf0c-30b716d0b94c" + "WESTUS:20201027T025104Z:c46b252a-d06c-4456-86fa-a0805fb949f3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:16 GMT" + "Tue, 27 Oct 2020 02:51:03 GMT" ], "Content-Length": [ "78" @@ -1240,16 +1240,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZhZmJmOGQtODU4ZS00Mzg3LTkyYWMtNDYwYmQ0MjIxZTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmE4MTAyMGItNDU4Zi00NmFmLWI4ZjUtODRmNWZmZjdlMzNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1260,10 +1260,10 @@ "no-cache" ], "x-ms-request-id": [ - "f1536e38-17c9-4dad-83dd-485b298cc59a" + "79971d21-95cd-41df-8b40-61a53bd1ecd9" ], "x-ms-client-request-id": [ - "1b0e130c-7fe3-4ea6-a8bb-70157611f16c" + "91a67df2-99ea-498c-967f-527372154611" ], "OData-Version": [ "4.0" @@ -1281,19 +1281,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11987" ], "x-ms-correlation-request-id": [ - "7a09ff22-36e1-4bd2-a7e1-561f2a2ec136" + "1ba20cd6-9f3b-412d-98a1-8a3388d11785" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231727Z:7a09ff22-36e1-4bd2-a7e1-561f2a2ec136" + "WESTUS:20201027T025114Z:1ba20cd6-9f3b-412d-98a1-8a3388d11785" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:27 GMT" + "Tue, 27 Oct 2020 02:51:14 GMT" ], "Content-Length": [ "78" @@ -1309,16 +1309,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZhZmJmOGQtODU4ZS00Mzg3LTkyYWMtNDYwYmQ0MjIxZTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmE4MTAyMGItNDU4Zi00NmFmLWI4ZjUtODRmNWZmZjdlMzNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1329,10 +1329,10 @@ "no-cache" ], "x-ms-request-id": [ - "f0d14a4a-c0f5-49e0-ab02-475ea549b541" + "1ff7145e-dc5b-48e0-9dd1-98ca5918a93a" ], "x-ms-client-request-id": [ - "91c60c74-8474-4fca-a4e0-35e0bbbce511" + "e6991fda-5fda-4bd0-9b8e-7316ba9bd704" ], "OData-Version": [ "4.0" @@ -1350,19 +1350,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11986" ], "x-ms-correlation-request-id": [ - "cd13bb3a-fc6f-4392-928f-6037baed9266" + "2492e53d-b7e8-478f-9311-50de94568335" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231738Z:cd13bb3a-fc6f-4392-928f-6037baed9266" + "WESTUS:20201027T025125Z:2492e53d-b7e8-478f-9311-50de94568335" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:37 GMT" + "Tue, 27 Oct 2020 02:51:24 GMT" ], "Content-Length": [ "78" @@ -1378,16 +1378,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/operationresults/36afbf8d-858e-4387-92ac-460bd4221e54?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzZhZmJmOGQtODU4ZS00Mzg3LTkyYWMtNDYwYmQ0MjIxZTU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/operationresults/ba81020b-458f-46af-b8f5-84f5fff7e33c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmE4MTAyMGItNDU4Zi00NmFmLWI4ZjUtODRmNWZmZjdlMzNjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1398,10 +1398,10 @@ "no-cache" ], "x-ms-request-id": [ - "162cb847-203f-434b-ad92-7ae34348fe2a" + "84d828cb-fcfa-4a66-ab36-da395385a8c1" ], "x-ms-client-request-id": [ - "9195975b-adb3-41f3-8b56-558b9a4bb758" + "e99ae4bd-afbe-4b3a-b0a0-3d67d789df69" ], "OData-Version": [ "4.0" @@ -1419,19 +1419,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11985" ], "x-ms-correlation-request-id": [ - "ef43a4d2-08d3-43ec-84d2-80c85cf60c61" + "09337ed6-ae49-4fee-abf4-2a9b32c4ccef" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231748Z:ef43a4d2-08d3-43ec-84d2-80c85cf60c61" + "WESTUS:20201027T025135Z:09337ed6-ae49-4fee-abf4-2a9b32c4ccef" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:47 GMT" + "Tue, 27 Oct 2020 02:51:34 GMT" ], "Content-Length": [ "77" @@ -1447,16 +1447,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3770?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNzcwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile6801?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2ODAxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1467,10 +1467,10 @@ "no-cache" ], "x-ms-request-id": [ - "0a49cc8c-da8a-4b68-858f-4a855e1c5a10" + "14bb602a-2713-4f12-a2ea-e7235dd862b7" ], "x-ms-client-request-id": [ - "6bb9861d-f36b-4e41-86bb-ae216c850548" + "3f2ae0ac-8bfe-4b0a-98ab-4b994fd9920c" ], "OData-Version": [ "4.0" @@ -1488,19 +1488,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "46" + "45" ], "x-ms-correlation-request-id": [ - "dd0290d0-b842-4328-b360-7f984cfa59a5" + "c8f40e6c-8d89-4f8b-bbf8-6160c93ae306" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231749Z:dd0290d0-b842-4328-b360-7f984cfa59a5" + "WESTUS:20201027T025136Z:c8f40e6c-8d89-4f8b-bbf8-6160c93ae306" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:48 GMT" + "Tue, 27 Oct 2020 02:51:35 GMT" ], "Content-Length": [ "396" @@ -1512,25 +1512,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3770\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478/providers/Microsoft.Cdn/profiles/profile3770\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile6801\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582/providers/Microsoft.Cdn/profiles/profile6801\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key7\": \"value7\",\r\n \"key8\": \"value8\"\r\n },\r\n \"location\": \"EastUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8478?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NDc4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4582?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTgyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "67cfdee4-880c-4e7a-87f7-ebb08f567563" + "4a557130-f494-4c02-91c6-e521f8749fe4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1542,7 +1542,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1551,13 +1551,13 @@ "14999" ], "x-ms-request-id": [ - "fc979aac-a200-4876-af2a-489458b17722" + "48af46cb-9108-49c8-8a76-2c0cf836918e" ], "x-ms-correlation-request-id": [ - "fc979aac-a200-4876-af2a-489458b17722" + "48af46cb-9108-49c8-8a76-2c0cf836918e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231749Z:fc979aac-a200-4876-af2a-489458b17722" + "WESTUS:20201027T025136Z:48af46cb-9108-49c8-8a76-2c0cf836918e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1566,7 +1566,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:17:49 GMT" + "Tue, 27 Oct 2020 02:51:36 GMT" ], "Expires": [ "-1" @@ -1579,15 +1579,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1599,7 +1599,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1608,13 +1608,13 @@ "11999" ], "x-ms-request-id": [ - "07bb5c05-fff2-4674-90e8-96d3362d0ae2" + "33a7b006-3b22-4c21-b1ab-35fd30b865bd" ], "x-ms-correlation-request-id": [ - "07bb5c05-fff2-4674-90e8-96d3362d0ae2" + "33a7b006-3b22-4c21-b1ab-35fd30b865bd" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231804Z:07bb5c05-fff2-4674-90e8-96d3362d0ae2" + "WESTUS:20201027T025152Z:33a7b006-3b22-4c21-b1ab-35fd30b865bd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1623,7 +1623,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:18:04 GMT" + "Tue, 27 Oct 2020 02:51:51 GMT" ], "Expires": [ "-1" @@ -1636,15 +1636,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1656,7 +1656,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1665,13 +1665,13 @@ "11998" ], "x-ms-request-id": [ - "108b7103-370f-472a-9798-89aac260c4e7" + "b9fe2184-cba3-40b8-b846-6ee6b6dad8bc" ], "x-ms-correlation-request-id": [ - "108b7103-370f-472a-9798-89aac260c4e7" + "b9fe2184-cba3-40b8-b846-6ee6b6dad8bc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231819Z:108b7103-370f-472a-9798-89aac260c4e7" + "WESTUS:20201027T025207Z:b9fe2184-cba3-40b8-b846-6ee6b6dad8bc" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1680,7 +1680,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:18:19 GMT" + "Tue, 27 Oct 2020 02:52:06 GMT" ], "Expires": [ "-1" @@ -1693,15 +1693,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1713,7 +1713,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1722,13 +1722,13 @@ "11997" ], "x-ms-request-id": [ - "58383814-b2c5-440a-a1fb-79ab50d1a958" + "c2845824-1e7e-4a51-b3df-8c3b89e0d8b8" ], "x-ms-correlation-request-id": [ - "58383814-b2c5-440a-a1fb-79ab50d1a958" + "c2845824-1e7e-4a51-b3df-8c3b89e0d8b8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231834Z:58383814-b2c5-440a-a1fb-79ab50d1a958" + "WESTUS:20201027T025222Z:c2845824-1e7e-4a51-b3df-8c3b89e0d8b8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1737,7 +1737,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:18:34 GMT" + "Tue, 27 Oct 2020 02:52:22 GMT" ], "Expires": [ "-1" @@ -1750,15 +1750,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1770,7 +1770,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1779,13 +1779,13 @@ "11996" ], "x-ms-request-id": [ - "fb08599e-b037-4373-ad98-21e5eb449bf9" + "21372f69-6c78-4e4e-aeea-ac337c5c6abb" ], "x-ms-correlation-request-id": [ - "fb08599e-b037-4373-ad98-21e5eb449bf9" + "21372f69-6c78-4e4e-aeea-ac337c5c6abb" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231849Z:fb08599e-b037-4373-ad98-21e5eb449bf9" + "WESTUS:20201027T025237Z:21372f69-6c78-4e4e-aeea-ac337c5c6abb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1794,7 +1794,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:18:49 GMT" + "Tue, 27 Oct 2020 02:52:37 GMT" ], "Expires": [ "-1" @@ -1807,15 +1807,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1827,7 +1827,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1836,13 +1836,13 @@ "11995" ], "x-ms-request-id": [ - "64af6d7c-0f83-4da2-9a40-e2a95797a436" + "b1ff7a7c-1e50-4e4d-bcb0-dddfdcb3f3c2" ], "x-ms-correlation-request-id": [ - "64af6d7c-0f83-4da2-9a40-e2a95797a436" + "b1ff7a7c-1e50-4e4d-bcb0-dddfdcb3f3c2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231904Z:64af6d7c-0f83-4da2-9a40-e2a95797a436" + "WESTUS:20201027T025252Z:b1ff7a7c-1e50-4e4d-bcb0-dddfdcb3f3c2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1851,7 +1851,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:19:04 GMT" + "Tue, 27 Oct 2020 02:52:52 GMT" ], "Expires": [ "-1" @@ -1864,15 +1864,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1884,7 +1884,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1893,13 +1893,13 @@ "11994" ], "x-ms-request-id": [ - "323c6514-aff3-406d-b2c2-471a8e10cb5c" + "b6cca3f8-c9f4-41b1-81fc-3ef109496fd5" ], "x-ms-correlation-request-id": [ - "323c6514-aff3-406d-b2c2-471a8e10cb5c" + "b6cca3f8-c9f4-41b1-81fc-3ef109496fd5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231920Z:323c6514-aff3-406d-b2c2-471a8e10cb5c" + "WESTUS:20201027T025307Z:b6cca3f8-c9f4-41b1-81fc-3ef109496fd5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1908,7 +1908,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:19:19 GMT" + "Tue, 27 Oct 2020 02:53:06 GMT" ], "Expires": [ "-1" @@ -1921,15 +1921,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1941,7 +1941,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1950,13 +1950,13 @@ "11993" ], "x-ms-request-id": [ - "0339d7b5-efc1-4e3c-8645-5ae3617829d0" + "9da65282-1027-42f6-acab-53765006eff5" ], "x-ms-correlation-request-id": [ - "0339d7b5-efc1-4e3c-8645-5ae3617829d0" + "9da65282-1027-42f6-acab-53765006eff5" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231935Z:0339d7b5-efc1-4e3c-8645-5ae3617829d0" + "WESTUS:20201027T025322Z:9da65282-1027-42f6-acab-53765006eff5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1965,7 +1965,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:19:34 GMT" + "Tue, 27 Oct 2020 02:53:21 GMT" ], "Expires": [ "-1" @@ -1978,15 +1978,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1998,7 +1998,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2007,13 +2007,13 @@ "11992" ], "x-ms-request-id": [ - "366b11f8-14da-4f47-bd7d-88d23a0ee0d5" + "9f795854-aa3e-4439-a1a8-471f6bc04e88" ], "x-ms-correlation-request-id": [ - "366b11f8-14da-4f47-bd7d-88d23a0ee0d5" + "9f795854-aa3e-4439-a1a8-471f6bc04e88" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T231950Z:366b11f8-14da-4f47-bd7d-88d23a0ee0d5" + "WESTUS:20201027T025337Z:9f795854-aa3e-4439-a1a8-471f6bc04e88" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2022,7 +2022,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:19:49 GMT" + "Tue, 27 Oct 2020 02:53:36 GMT" ], "Expires": [ "-1" @@ -2035,15 +2035,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2055,7 +2055,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2064,13 +2064,13 @@ "11991" ], "x-ms-request-id": [ - "3400d33a-5f39-41bb-b4d3-873ea5b65658" + "1999154c-b7fa-456d-8041-02b741762f6f" ], "x-ms-correlation-request-id": [ - "3400d33a-5f39-41bb-b4d3-873ea5b65658" + "1999154c-b7fa-456d-8041-02b741762f6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232005Z:3400d33a-5f39-41bb-b4d3-873ea5b65658" + "WESTUS:20201027T025352Z:1999154c-b7fa-456d-8041-02b741762f6f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2079,7 +2079,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:04 GMT" + "Tue, 27 Oct 2020 02:53:51 GMT" ], "Expires": [ "-1" @@ -2092,15 +2092,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2112,7 +2112,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2121,13 +2121,13 @@ "11990" ], "x-ms-request-id": [ - "a12a6250-23f4-4f41-aaec-2e96e0cba864" + "278af6b6-c8d2-47dc-aac5-758d068ed6ea" ], "x-ms-correlation-request-id": [ - "a12a6250-23f4-4f41-aaec-2e96e0cba864" + "278af6b6-c8d2-47dc-aac5-758d068ed6ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232020Z:a12a6250-23f4-4f41-aaec-2e96e0cba864" + "WESTUS:20201027T025407Z:278af6b6-c8d2-47dc-aac5-758d068ed6ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2136,7 +2136,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:20 GMT" + "Tue, 27 Oct 2020 02:54:06 GMT" ], "Expires": [ "-1" @@ -2149,15 +2149,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2172,13 +2172,13 @@ "11989" ], "x-ms-request-id": [ - "e92c88cd-00ba-4d18-a4ea-b875ad98a617" + "340e2d38-197e-40f2-a33d-bb911d220ab7" ], "x-ms-correlation-request-id": [ - "e92c88cd-00ba-4d18-a4ea-b875ad98a617" + "340e2d38-197e-40f2-a33d-bb911d220ab7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232035Z:e92c88cd-00ba-4d18-a4ea-b875ad98a617" + "WESTUS:20201027T025422Z:340e2d38-197e-40f2-a33d-bb911d220ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2187,7 +2187,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:35 GMT" + "Tue, 27 Oct 2020 02:54:21 GMT" ], "Expires": [ "-1" @@ -2200,15 +2200,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODQ3OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRFEzT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU4Mi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU0TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2223,13 +2223,13 @@ "11988" ], "x-ms-request-id": [ - "eccc4047-62ca-479f-9047-e64b38b6f199" + "70ea88af-6061-40dd-bb23-03d844bc73ce" ], "x-ms-correlation-request-id": [ - "eccc4047-62ca-479f-9047-e64b38b6f199" + "70ea88af-6061-40dd-bb23-03d844bc73ce" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232035Z:eccc4047-62ca-479f-9047-e64b38b6f199" + "WESTUS:20201027T025422Z:70ea88af-6061-40dd-bb23-03d844bc73ce" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2238,7 +2238,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:35 GMT" + "Tue, 27 Oct 2020 02:54:21 GMT" ], "Expires": [ "-1" @@ -2253,13 +2253,13 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup8478" + "cdnResourceGroup4582" ], "ProfileCreateTest": [ - "profile4988", - "profile5256", - "profile3643", - "profile3770" + "profile4793", + "profile3954", + "profile9621", + "profile6801" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileDeleteTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileDeleteTest.json index f6101f4f5684d..2a4bc68a5f58e 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileDeleteTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileDeleteTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f07a78b1-adda-40ea-96d2-887ddb804551" + "57f30db0-8710-4149-8f1f-9af91fb389c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "89136df4-6f54-4a15-abe8-ebcfb89fbe05" + "8b90f5b2-d510-411f-b66d-4e9efd04e507" ], "x-ms-correlation-request-id": [ - "89136df4-6f54-4a15-abe8-ebcfb89fbe05" + "8b90f5b2-d510-411f-b66d-4e9efd04e507" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230528Z:89136df4-6f54-4a15-abe8-ebcfb89fbe05" + "WESTUS:20201027T024059Z:8b90f5b2-d510-411f-b66d-4e9efd04e507" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:05:28 GMT" + "Tue, 27 Oct 2020 02:40:58 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099\",\r\n \"name\": \"cdnResourceGroup7099\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871\",\r\n \"name\": \"cdnResourceGroup1871\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNDY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTg1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "96c335ca-ac72-4685-bcc1-2b2c57a4d280" + "4340b41d-ecbd-4f5b-8d50-220e1cc0e40b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "94c6a286-773b-4fe5-875a-c0077783a4a6" + "9e5e6536-13fe-4e8d-b85d-ef58312ab6e2" ], "x-ms-client-request-id": [ - "96c335ca-ac72-4685-bcc1-2b2c57a4d280" + "4340b41d-ecbd-4f5b-8d50-220e1cc0e40b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/abd29060-5077-4357-9622-ee7001d431c3?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/baf62c96-8251-47d2-8871-ebf68b58a056?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -126,19 +126,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "23" + "24" ], "x-ms-correlation-request-id": [ - "f196cd90-d2f7-4363-b073-364e28f43d5e" + "8ca764e6-b5f2-42a1-a42c-9b94d61992dc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230532Z:f196cd90-d2f7-4363-b073-364e28f43d5e" + "WESTUS:20201027T024106Z:8ca764e6-b5f2-42a1-a42c-9b94d61992dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:05:32 GMT" + "Tue, 27 Oct 2020 02:41:05 GMT" ], "Content-Length": [ "398" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3464\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile8985\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/abd29060-5077-4357-9622-ee7001d431c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWJkMjkwNjAtNTA3Ny00MzU3LTk2MjItZWU3MDAxZDQzMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/baf62c96-8251-47d2-8871-ebf68b58a056?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmFmNjJjOTYtODI1MS00N2QyLTg4NzEtZWJmNjhiNThhMDU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "b2f6f060-3247-418d-abbd-722f3bfabd9c" + "3c20c730-bb53-4faa-bba3-9b1e28d12b46" ], "x-ms-client-request-id": [ - "3cc8986b-7209-492b-b502-840860bc3d3b" + "5cb7d71c-b846-462f-8fdd-bdecb0178e16" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11999" ], "x-ms-correlation-request-id": [ - "13c0c71c-3a52-4bee-abdf-5758e42210e8" + "387fc457-394a-4bd4-bbe9-44e59eba2d93" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230542Z:13c0c71c-3a52-4bee-abdf-5758e42210e8" + "WESTUS:20201027T024116Z:387fc457-394a-4bd4-bbe9-44e59eba2d93" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:05:42 GMT" + "Tue, 27 Oct 2020 02:41:16 GMT" ], "Content-Length": [ "78" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/abd29060-5077-4357-9622-ee7001d431c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWJkMjkwNjAtNTA3Ny00MzU3LTk2MjItZWU3MDAxZDQzMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/baf62c96-8251-47d2-8871-ebf68b58a056?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmFmNjJjOTYtODI1MS00N2QyLTg4NzEtZWJmNjhiNThhMDU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "5ef034cf-4e55-4c00-b40a-a29253185987" + "3cf65afd-d311-424c-a39f-d933d3d3cf1e" ], "x-ms-client-request-id": [ - "5ecc260a-aca5-4d6a-a5d5-101cee462b34" + "71632166-cfa6-4861-8fe4-cd47943f6f27" ], "OData-Version": [ "4.0" @@ -264,19 +264,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11998" ], "x-ms-correlation-request-id": [ - "d9005519-1371-4b29-9298-4c794bfe4d4e" + "52c20adc-b901-4f6f-a8f1-b2698737c118" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230553Z:d9005519-1371-4b29-9298-4c794bfe4d4e" + "WESTUS:20201027T024126Z:52c20adc-b901-4f6f-a8f1-b2698737c118" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:05:52 GMT" + "Tue, 27 Oct 2020 02:41:26 GMT" ], "Content-Length": [ "78" @@ -292,16 +292,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/abd29060-5077-4357-9622-ee7001d431c3?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYWJkMjkwNjAtNTA3Ny00MzU3LTk2MjItZWU3MDAxZDQzMWMzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/baf62c96-8251-47d2-8871-ebf68b58a056?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmFmNjJjOTYtODI1MS00N2QyLTg4NzEtZWJmNjhiNThhMDU2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "1db0f085-422e-42a1-87c4-c786ea1c467a" + "6c9dd5f6-3004-4e8e-9650-846565c642ba" ], "x-ms-client-request-id": [ - "37293ee0-4e49-48de-a851-af7ba96ab12a" + "dc1ddfd2-a06b-4584-bcdc-2d7cc7903cc0" ], "OData-Version": [ "4.0" @@ -333,19 +333,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11997" ], "x-ms-correlation-request-id": [ - "ee0d80b5-3f61-49a3-bfa9-bc8193694df8" + "f2c2efc3-1f41-47a0-bcd8-b05ddb468016" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230603Z:ee0d80b5-3f61-49a3-bfa9-bc8193694df8" + "WESTUS:20201027T024137Z:f2c2efc3-1f41-47a0-bcd8-b05ddb468016" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:02 GMT" + "Tue, 27 Oct 2020 02:41:36 GMT" ], "Content-Length": [ "77" @@ -361,16 +361,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNDY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTg1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,10 +381,10 @@ "no-cache" ], "x-ms-request-id": [ - "8be9d453-996e-4039-afb5-1517e064993e" + "439d83b3-4d44-4014-8c2c-37453a5da3cf" ], "x-ms-client-request-id": [ - "417042fc-1bb1-4008-94c7-07ef63fdfb23" + "d985fb23-3450-42e7-9850-7bc207e26c92" ], "OData-Version": [ "4.0" @@ -405,16 +405,16 @@ "49" ], "x-ms-correlation-request-id": [ - "ffa6a2c3-5e4f-4119-ae98-0827784f2f2a" + "1121cc81-41ad-4c49-9546-3efd9016b66b" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230604Z:ffa6a2c3-5e4f-4119-ae98-0827784f2f2a" + "WESTUS:20201027T024138Z:1121cc81-41ad-4c49-9546-3efd9016b66b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:03 GMT" + "Tue, 27 Oct 2020 02:41:37 GMT" ], "Content-Length": [ "397" @@ -426,26 +426,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile3464\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile8985\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNDY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTg1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "55024e3b-d931-414e-a91c-c621a72f7e41" + "91e36bb9-d735-45b0-afd5-48914f3871e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -456,19 +456,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/0f90d387-5f4f-4a40-a39e-f6343fd5ffb7/profileresults/profile3464?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/d2e30c10-ebe6-4742-ae19-d0d3b285bf22/profileresults/profile8985?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "b3f179dc-9d43-4996-8ad8-ad398d8b83e4" + "b6dd5861-413b-410d-a1b1-6b406448123a" ], "x-ms-client-request-id": [ - "55024e3b-d931-414e-a91c-c621a72f7e41" + "91e36bb9-d735-45b0-afd5-48914f3871e0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/0f90d387-5f4f-4a40-a39e-f6343fd5ffb7?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/d2e30c10-ebe6-4742-ae19-d0d3b285bf22?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -486,16 +486,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "2f40c89a-968d-4983-aaa3-172d0f2270f1" + "cc4f0924-1d4f-4495-a93b-dfe717cf896a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230606Z:2f40c89a-968d-4983-aaa3-172d0f2270f1" + "WESTUS:20201027T024139Z:cc4f0924-1d4f-4495-a93b-dfe717cf896a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:06 GMT" + "Tue, 27 Oct 2020 02:41:39 GMT" ], "Expires": [ "-1" @@ -508,22 +508,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile3464?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzNDY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile8985?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTg1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8114527f-219d-4a07-899d-dac97c95d387" + "0d9b85a4-d903-4746-921d-41eedf9a95e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -533,126 +533,45 @@ "Pragma": [ "no-cache" ], - "x-ms-request-id": [ - "8b8ac9d6-d665-495b-a2c6-f2282973276b" - ], - "x-ms-client-request-id": [ - "8114527f-219d-4a07-899d-dac97c95d387" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], "x-ms-ratelimit-remaining-subscription-deletes": [ "14998" ], - "x-ms-correlation-request-id": [ - "86d29dca-7701-41aa-87d0-31bdf629e313" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230631Z:86d29dca-7701-41aa-87d0-31bdf629e313" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:06:30 GMT" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "", - "StatusCode": 204 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/0f90d387-5f4f-4a40-a39e-f6343fd5ffb7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGY5MGQzODctNWY0Zi00YTQwLWEzOWUtZjYzNDNmZDVmZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], "x-ms-request-id": [ - "6d03d3cf-c80d-47ee-a356-0e2cfe80fdc5" + "79536905-89ec-493f-8ecb-e0250ad4db27" ], - "x-ms-client-request-id": [ - "7b6f8026-33cd-41be-9931-7b83a6f57ecf" + "x-ms-correlation-request-id": [ + "79536905-89ec-493f-8ecb-e0250ad4db27" ], - "OData-Version": [ - "4.0" + "x-ms-routing-request-id": [ + "WESTUS:20201027T024151Z:79536905-89ec-493f-8ecb-e0250ad4db27" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11983" - ], - "x-ms-correlation-request-id": [ - "ff6541e3-012c-4820-83f6-966b2ab6bea0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230617Z:ff6541e3-012c-4820-83f6-966b2ab6bea0" - ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:16 GMT" - ], - "Content-Length": [ - "78" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "Tue, 27 Oct 2020 02:41:51 GMT" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", - "StatusCode": 200 + "ResponseBody": "", + "StatusCode": 204 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/0f90d387-5f4f-4a40-a39e-f6343fd5ffb7?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGY5MGQzODctNWY0Zi00YTQwLWEzOWUtZjYzNDNmZDVmZmI3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/d2e30c10-ebe6-4742-ae19-d0d3b285bf22?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDJlMzBjMTAtZWJlNi00NzQyLWFlMTktZDBkM2IyODViZjIyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -663,10 +582,10 @@ "no-cache" ], "x-ms-request-id": [ - "d0746029-ad4a-42b1-89c4-d9c7d5751e76" + "692e1bfc-6c2a-4a2f-b1a7-bb00fd99cb7d" ], "x-ms-client-request-id": [ - "788f9b0f-399d-4dbc-b9b1-3f7babde0ba9" + "d34ea53e-a68a-4919-a8e9-bc6ed8f903cc" ], "OData-Version": [ "4.0" @@ -684,19 +603,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11982" + "11996" ], "x-ms-correlation-request-id": [ - "e072e501-370c-4259-ac0d-37883204ffca" + "ac56397d-df27-4815-9f70-2de937323710" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230627Z:e072e501-370c-4259-ac0d-37883204ffca" + "WESTUS:20201027T024150Z:ac56397d-df27-4815-9f70-2de937323710" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:26 GMT" + "Tue, 27 Oct 2020 02:41:49 GMT" ], "Content-Length": [ "77" @@ -712,16 +631,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/0f90d387-5f4f-4a40-a39e-f6343fd5ffb7/profileresults/profile3464?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGY5MGQzODctNWY0Zi00YTQwLWEzOWUtZjYzNDNmZDVmZmI3L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUzNDY0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/d2e30c10-ebe6-4742-ae19-d0d3b285bf22/profileresults/profile8985?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDJlMzBjMTAtZWJlNi00NzQyLWFlMTktZDBkM2IyODViZjIyL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU4OTg1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -732,10 +651,10 @@ "no-cache" ], "x-ms-request-id": [ - "549dc567-2cba-4712-9516-f8c5edbc3835" + "bf1a2364-05d5-4dce-9b37-2d5910deeb24" ], "x-ms-client-request-id": [ - "7dab55e2-cfd1-434a-94ca-4abc7a3f01e5" + "9a238516-40d6-42a4-977e-d1c0e3e81108" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -750,19 +669,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11981" + "11995" ], "x-ms-correlation-request-id": [ - "97153302-8c2c-4670-aba0-4ebdd38b037a" + "d0e5fa2c-49c0-4b2c-8795-34828104beaa" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230628Z:97153302-8c2c-4670-aba0-4ebdd38b037a" + "WESTUS:20201027T024150Z:d0e5fa2c-49c0-4b2c-8795-34828104beaa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:27 GMT" + "Tue, 27 Oct 2020 02:41:50 GMT" ], "Content-Length": [ "104" @@ -781,22 +700,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7182f00f-4d79-4052-b046-7b3384360511" + "9c279d83-07ee-4978-b306-6d60a241c8bf" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -807,10 +726,10 @@ "no-cache" ], "x-ms-request-id": [ - "15f24ca8-67e1-4d47-bf8d-1952ce3af1fe" + "84fc29a3-16e7-45c0-8e4b-d890ab44eb9c" ], "x-ms-client-request-id": [ - "7182f00f-4d79-4052-b046-7b3384360511" + "9c279d83-07ee-4978-b306-6d60a241c8bf" ], "OData-Version": [ "4.0" @@ -831,16 +750,16 @@ "48" ], "x-ms-correlation-request-id": [ - "c78f8860-38e9-473a-9252-6f675bb636b0" + "0483ef82-a546-44f1-83af-a909a58ec2f8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230629Z:c78f8860-38e9-473a-9252-6f675bb636b0" + "WESTUS:20201027T024151Z:0483ef82-a546-44f1-83af-a909a58ec2f8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:28 GMT" + "Tue, 27 Oct 2020 02:41:51 GMT" ], "Content-Length": [ "28" @@ -856,22 +775,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "72094267-e034-4c0c-86d2-5f8a1bf1d493" + "287c8337-b15d-4bd4-9397-4de59391bf9e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -882,10 +801,10 @@ "no-cache" ], "x-ms-request-id": [ - "185b4008-280c-4915-b054-b03b122f1dc2" + "b9b3e5dd-4093-46de-aace-d8f241884834" ], "x-ms-client-request-id": [ - "72094267-e034-4c0c-86d2-5f8a1bf1d493" + "287c8337-b15d-4bd4-9397-4de59391bf9e" ], "OData-Version": [ "4.0" @@ -906,16 +825,16 @@ "47" ], "x-ms-correlation-request-id": [ - "1bc7fdbf-08a5-4bdd-9173-9c6960b0257d" + "b639e820-ba95-42a3-be84-b7171a771eb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230752Z:1bc7fdbf-08a5-4bdd-9173-9c6960b0257d" + "WESTUS:20201027T024319Z:b639e820-ba95-42a3-be84-b7171a771eb3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:07:51 GMT" + "Tue, 27 Oct 2020 02:43:18 GMT" ], "Content-Length": [ "28" @@ -931,22 +850,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile8759?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile618?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "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": { "x-ms-client-request-id": [ - "72edd90a-f0d3-4ca9-939c-b8f6d26bdac4" + "1527256e-eac7-479d-8df5-cb072cb15bbc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -966,13 +885,13 @@ "10" ], "x-ms-request-id": [ - "cc2fa988-eeeb-4601-804a-56adf02ec21b" + "7e281dc9-1ed3-4473-951c-9de2c621f303" ], "x-ms-client-request-id": [ - "72edd90a-f0d3-4ca9-939c-b8f6d26bdac4" + "1527256e-eac7-479d-8df5-cb072cb15bbc" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/3124a069-5f1b-42de-bf7c-78ee7dca306d?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/2dd0715a-5405-49d5-aaba-571c121f388b?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -990,22 +909,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "22" + "23" ], "x-ms-correlation-request-id": [ - "061a4deb-6adf-4fae-9a5c-d9a093445f32" + "bec75354-cd6b-4467-9d2d-dda50c9fddc9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230636Z:061a4deb-6adf-4fae-9a5c-d9a093445f32" + "WESTUS:20201027T024155Z:bec75354-cd6b-4467-9d2d-dda50c9fddc9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:06:35 GMT" + "Tue, 27 Oct 2020 02:41:54 GMT" ], "Content-Length": [ - "398" + "396" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1014,26 +933,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile8759\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile8759\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile618\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7099/providers/Microsoft.Cdn/profiles/profile8759?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1871/providers/Microsoft.Cdn/profiles/profile618?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06a09f7f-fac9-4831-b7b7-3deba2cc3acd" + "57a170f8-2995-4692-bdaf-105a986573d0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1044,19 +963,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/b29cefa1-83a5-4ac2-843d-a6fb8efe459c/profileresults/profile8759?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/0c4c772a-f463-4831-857a-09192bdd2878/profileresults/profile618?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "3aa537b8-37b5-4c9d-a702-fee3b36f985e" + "668a7815-d891-40d6-a798-6c7dfabd8974" ], "x-ms-client-request-id": [ - "06a09f7f-fac9-4831-b7b7-3deba2cc3acd" + "57a170f8-2995-4692-bdaf-105a986573d0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/b29cefa1-83a5-4ac2-843d-a6fb8efe459c?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/0c4c772a-f463-4831-857a-09192bdd2878?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1074,16 +993,16 @@ "14997" ], "x-ms-correlation-request-id": [ - "02b8f502-4899-4c85-bb49-ed9d7742ee67" + "975e485f-505c-4c5e-af29-267cda1dbfc1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230740Z:02b8f502-4899-4c85-bb49-ed9d7742ee67" + "WESTUS:20201027T024257Z:975e485f-505c-4c5e-af29-267cda1dbfc1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:07:40 GMT" + "Tue, 27 Oct 2020 02:42:56 GMT" ], "Expires": [ "-1" @@ -1096,16 +1015,85 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/b29cefa1-83a5-4ac2-843d-a6fb8efe459c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjI5Y2VmYTEtODNhNS00YWMyLTg0M2QtYTZmYjhlZmU0NTljP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/0c4c772a-f463-4831-857a-09192bdd2878?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGM0Yzc3MmEtZjQ2My00ODMxLTg1N2EtMDkxOTJiZGQyODc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "afd8780b-0c0f-433b-87ef-5d6eb18cd546" + ], + "x-ms-client-request-id": [ + "1a98f5d4-eab8-47e8-888d-29f3262e2a9f" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11994" + ], + "x-ms-correlation-request-id": [ + "48189b6d-cb4d-4732-b232-ee52a8b189fe" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T024307Z:48189b6d-cb4d-4732-b232-ee52a8b189fe" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:43:06 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/0c4c772a-f463-4831-857a-09192bdd2878?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGM0Yzc3MmEtZjQ2My00ODMxLTg1N2EtMDkxOTJiZGQyODc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1116,10 +1104,10 @@ "no-cache" ], "x-ms-request-id": [ - "d86c809f-a2e9-4b71-b881-49fd2841721d" + "5aa978e8-7907-4aa1-a955-97411f5f08b8" ], "x-ms-client-request-id": [ - "84b760fd-b84d-44b7-8453-fc0c11bf1213" + "cfcdc0e6-92e1-4684-addb-ce15f6af90e2" ], "OData-Version": [ "4.0" @@ -1137,19 +1125,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11980" + "11993" ], "x-ms-correlation-request-id": [ - "9936224b-e04b-477a-bce6-fd77606ce716" + "71fcb5bb-4832-48ad-aa74-f7422daea2cf" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230750Z:9936224b-e04b-477a-bce6-fd77606ce716" + "WESTUS:20201027T024317Z:71fcb5bb-4832-48ad-aa74-f7422daea2cf" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:07:50 GMT" + "Tue, 27 Oct 2020 02:43:16 GMT" ], "Content-Length": [ "77" @@ -1165,16 +1153,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099/providers/Microsoft.Cdn/operationresults/b29cefa1-83a5-4ac2-843d-a6fb8efe459c/profileresults/profile8759?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYjI5Y2VmYTEtODNhNS00YWMyLTg0M2QtYTZmYjhlZmU0NTljL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU4NzU5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871/providers/Microsoft.Cdn/operationresults/0c4c772a-f463-4831-857a-09192bdd2878/profileresults/profile618?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMGM0Yzc3MmEtZjQ2My00ODMxLTg1N2EtMDkxOTJiZGQyODc4L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU2MTg/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1185,10 +1173,10 @@ "no-cache" ], "x-ms-request-id": [ - "ed6b2c8c-cf57-40ad-9be5-15e500cf7ed2" + "0e77e4f5-74bd-44a9-bbb8-d4e0e3817c94" ], "x-ms-client-request-id": [ - "c16fa89b-3c22-4f00-9fd5-768604f84dfd" + "139eae5d-81e4-4e90-92df-9b9396c2ecb8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1203,19 +1191,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11979" + "11992" ], "x-ms-correlation-request-id": [ - "36164640-bd81-428c-aac7-fc272817aa33" + "00eb8f8b-b10d-4f5c-ab13-4ed81a9cdfab" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230751Z:36164640-bd81-428c-aac7-fc272817aa33" + "WESTUS:20201027T024318Z:00eb8f8b-b10d-4f5c-ab13-4ed81a9cdfab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:07:50 GMT" + "Tue, 27 Oct 2020 02:43:17 GMT" ], "Content-Length": [ "104" @@ -1234,21 +1222,21 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7099?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3MDk5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1871?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODcxP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2ab293d1-ec75-4357-b866-2b185a57e7cf" + "d8ed516f-debb-4060-8486-d8d7fc2c55e7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1260,7 +1248,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1269,13 +1257,13 @@ "14999" ], "x-ms-request-id": [ - "91001008-1e2b-41b6-ab69-286198b51688" + "f4c70b01-6a23-4e05-a5eb-634efd9d56a8" ], "x-ms-correlation-request-id": [ - "91001008-1e2b-41b6-ab69-286198b51688" + "f4c70b01-6a23-4e05-a5eb-634efd9d56a8" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230752Z:91001008-1e2b-41b6-ab69-286198b51688" + "WESTUS:20201027T024320Z:f4c70b01-6a23-4e05-a5eb-634efd9d56a8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,7 +1272,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:07:51 GMT" + "Tue, 27 Oct 2020 02:43:20 GMT" ], "Expires": [ "-1" @@ -1297,15 +1285,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekE1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1317,7 +1305,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1326,13 +1314,13 @@ "11999" ], "x-ms-request-id": [ - "42b9c9d8-0cc3-4db1-819b-2813614d763b" + "1f4173dd-4c6f-43dc-899f-823491874e79" ], "x-ms-correlation-request-id": [ - "42b9c9d8-0cc3-4db1-819b-2813614d763b" + "1f4173dd-4c6f-43dc-899f-823491874e79" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230807Z:42b9c9d8-0cc3-4db1-819b-2813614d763b" + "WESTUS:20201027T024335Z:1f4173dd-4c6f-43dc-899f-823491874e79" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1341,7 +1329,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:06 GMT" + "Tue, 27 Oct 2020 02:43:34 GMT" ], "Expires": [ "-1" @@ -1354,15 +1342,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekE1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1374,7 +1362,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1383,13 +1371,13 @@ "11998" ], "x-ms-request-id": [ - "f6ec456e-9d66-45ab-af20-688eea13b40c" + "bb76c38c-9424-4865-b46e-dbfc94a67e61" ], "x-ms-correlation-request-id": [ - "f6ec456e-9d66-45ab-af20-688eea13b40c" + "bb76c38c-9424-4865-b46e-dbfc94a67e61" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230822Z:f6ec456e-9d66-45ab-af20-688eea13b40c" + "WESTUS:20201027T024350Z:bb76c38c-9424-4865-b46e-dbfc94a67e61" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1398,7 +1386,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:22 GMT" + "Tue, 27 Oct 2020 02:43:49 GMT" ], "Expires": [ "-1" @@ -1411,15 +1399,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekE1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1434,13 +1422,13 @@ "11997" ], "x-ms-request-id": [ - "110ddf2d-3a12-48a8-94a6-9e1cecbfbb41" + "b0365dba-0bab-4493-b795-8eb25c84ef5e" ], "x-ms-correlation-request-id": [ - "110ddf2d-3a12-48a8-94a6-9e1cecbfbb41" + "b0365dba-0bab-4493-b795-8eb25c84ef5e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230837Z:110ddf2d-3a12-48a8-94a6-9e1cecbfbb41" + "WESTUS:20201027T024405Z:b0365dba-0bab-4493-b795-8eb25c84ef5e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1449,7 +1437,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:37 GMT" + "Tue, 27 Oct 2020 02:44:04 GMT" ], "Expires": [ "-1" @@ -1462,15 +1450,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzA5OS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOekE1T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg3MS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGczTVMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1485,13 +1473,13 @@ "11996" ], "x-ms-request-id": [ - "f98d8914-4058-4e32-8a23-9c987409fc55" + "0c1f4acc-9729-4dac-b911-a6e5ef6c9ac1" ], "x-ms-correlation-request-id": [ - "f98d8914-4058-4e32-8a23-9c987409fc55" + "0c1f4acc-9729-4dac-b911-a6e5ef6c9ac1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230837Z:f98d8914-4058-4e32-8a23-9c987409fc55" + "WESTUS:20201027T024405Z:0c1f4acc-9729-4dac-b911-a6e5ef6c9ac1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1500,7 +1488,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:08:37 GMT" + "Tue, 27 Oct 2020 02:44:04 GMT" ], "Expires": [ "-1" @@ -1515,11 +1503,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup7099" + "cdnResourceGroup1871" ], "ProfileDeleteTest": [ - "profile3464", - "profile8759" + "profile8985", + "profile618" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileGetListTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileGetListTest.json index ed88d1a30201b..4204421a79f73 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileGetListTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileGetListTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "c7e35c48-145c-4bdd-a077-bc24ff02d36e" + "10a1f014-46eb-4c63-baf5-5ef35c2c1465" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "d89571d5-1ed8-41b3-8733-6035967de5e7" + "302f6491-440c-47f7-af42-c663d39ed235" ], "x-ms-correlation-request-id": [ - "d89571d5-1ed8-41b3-8733-6035967de5e7" + "302f6491-440c-47f7-af42-c663d39ed235" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232617Z:d89571d5-1ed8-41b3-8733-6035967de5e7" + "WESTUS:20201027T030036Z:302f6491-440c-47f7-af42-c663d39ed235" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:17 GMT" + "Tue, 27 Oct 2020 03:00:35 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850\",\r\n \"name\": \"cdnResourceGroup1850\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187\",\r\n \"name\": \"cdnResourceGroup8187\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "145a7ef2-1c49-4e6c-b196-3d3ec906e828" + "6935e96c-485f-459f-a6ee-b148363ef40f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -96,13 +96,13 @@ "49" ], "x-ms-request-id": [ - "d448c4bc-07a5-46a2-a8fd-a761ea0c31fd" + "e4c65e24-74b7-47fa-95ed-852b56d56c7f" ], "x-ms-correlation-request-id": [ - "d448c4bc-07a5-46a2-a8fd-a761ea0c31fd" + "e4c65e24-74b7-47fa-95ed-852b56d56c7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232617Z:d448c4bc-07a5-46a2-a8fd-a761ea0c31fd" + "WESTUS:20201027T030036Z:e4c65e24-74b7-47fa-95ed-852b56d56c7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -111,7 +111,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:17 GMT" + "Tue, 27 Oct 2020 03:00:35 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -127,22 +127,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4d4920f0-4882-4da3-9e76-26801f7ce3eb" + "1c116165-b694-4231-93e1-40fef9496aab" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -153,10 +153,10 @@ "no-cache" ], "x-ms-request-id": [ - "7e3576d1-992f-418b-b00b-2230e6bfdef5" + "8e338a9b-b5d5-44c0-b4eb-351efebc02d6" ], "x-ms-client-request-id": [ - "4d4920f0-4882-4da3-9e76-26801f7ce3eb" + "1c116165-b694-4231-93e1-40fef9496aab" ], "OData-Version": [ "4.0" @@ -177,16 +177,16 @@ "46" ], "x-ms-correlation-request-id": [ - "d804f90e-4a7c-40c8-91de-64bdfe521c02" + "f04e17a1-ad60-48e3-84ff-edfe9b86b0db" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232658Z:d804f90e-4a7c-40c8-91de-64bdfe521c02" + "WESTUS:20201027T030123Z:f04e17a1-ad60-48e3-84ff-edfe9b86b0db" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:58 GMT" + "Tue, 27 Oct 2020 03:01:22 GMT" ], "Content-Length": [ "457" @@ -198,26 +198,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile7677\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile4374\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d9210551-126e-4970-a5e8-66201fcbc1f6" + "a41abfe2-f043-479a-977a-3782269ce6d2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -228,10 +228,10 @@ "no-cache" ], "x-ms-request-id": [ - "b1f5d6b1-d0a1-4469-a828-2b20a51c6bc4" + "26910900-eb0e-429a-9734-39dcb1fbed0d" ], "x-ms-client-request-id": [ - "d9210551-126e-4970-a5e8-66201fcbc1f6" + "a41abfe2-f043-479a-977a-3782269ce6d2" ], "OData-Version": [ "4.0" @@ -252,16 +252,16 @@ "45" ], "x-ms-correlation-request-id": [ - "a796e31d-4380-4b92-8b04-b36cc859e47c" + "c146405a-8ff3-4812-8784-a12f6eae0a57" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232704Z:a796e31d-4380-4b92-8b04-b36cc859e47c" + "WESTUS:20201027T030130Z:c146405a-8ff3-4812-8784-a12f6eae0a57" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:03 GMT" + "Tue, 27 Oct 2020 03:01:30 GMT" ], "Content-Length": [ "888" @@ -273,26 +273,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile5521\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521\",\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 },\r\n {\r\n \"name\": \"profile7677\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile6006\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006\",\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 },\r\n {\r\n \"name\": \"profile4374\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e76c06c9-7194-4d37-8c8e-14a4c338a48d" + "f299e0b2-ada9-4446-84a7-9603be965ecd" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -303,10 +303,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc5a0d2c-9f17-46ae-b8f5-639d0fc0d315" + "dceae36a-5932-4b60-8b0c-9c67c16debae" ], "x-ms-client-request-id": [ - "e76c06c9-7194-4d37-8c8e-14a4c338a48d" + "f299e0b2-ada9-4446-84a7-9603be965ecd" ], "OData-Version": [ "4.0" @@ -327,16 +327,16 @@ "43" ], "x-ms-correlation-request-id": [ - "a71ba800-66db-4253-8f47-2057cbf01371" + "0addd653-577e-483e-9e9f-e202b6e7ee66" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232718Z:a71ba800-66db-4253-8f47-2057cbf01371" + "WESTUS:20201027T030144Z:0addd653-577e-483e-9e9f-e202b6e7ee66" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:18 GMT" + "Tue, 27 Oct 2020 03:01:44 GMT" ], "Content-Length": [ "458" @@ -348,26 +348,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile5521\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521\",\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 }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"profile6006\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006\",\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 }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cf9fb94e-806b-4af7-9d36-f8f71aba032b" + "19679653-73d5-4c47-8dce-1c08cbd3f61e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -381,13 +381,13 @@ "41" ], "x-ms-request-id": [ - "0c5b2d5e-e873-42f5-b42a-30eced1b97a7" + "e16126c7-46d1-49f7-9fc3-35f03eabc39c" ], "x-ms-correlation-request-id": [ - "0c5b2d5e-e873-42f5-b42a-30eced1b97a7" + "e16126c7-46d1-49f7-9fc3-35f03eabc39c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232924Z:0c5b2d5e-e873-42f5-b42a-30eced1b97a7" + "WESTUS:20201027T030349Z:e16126c7-46d1-49f7-9fc3-35f03eabc39c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -396,7 +396,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:29:23 GMT" + "Tue, 27 Oct 2020 03:03:49 GMT" ], "Content-Type": [ "application/json; charset=utf-8" @@ -412,22 +412,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "f826ee3f-6426-47c8-a521-b8eebd4609c0" + "f9b59431-c5eb-45ca-81e1-c5a5384b043c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -447,13 +447,13 @@ "10" ], "x-ms-request-id": [ - "8c992ba2-e1a8-4e14-a02b-d1e759c5d45d" + "6c5adc70-8aa6-4689-ba64-cba408c48d14" ], "x-ms-client-request-id": [ - "f826ee3f-6426-47c8-a521-b8eebd4609c0" + "f9b59431-c5eb-45ca-81e1-c5a5384b043c" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/052b1b35-db4f-4774-8b9e-6e8a99f4f329?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/a93ffa0e-eaf3-4ab5-8570-beda0746bb90?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -471,19 +471,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "24" + "23" ], "x-ms-correlation-request-id": [ - "ddbb9828-db47-489d-87ed-4ae76ca7d19d" + "d8356a64-c1c8-46c1-ae4f-c65ed8b4eb68" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232624Z:ddbb9828-db47-489d-87ed-4ae76ca7d19d" + "WESTUS:20201027T030039Z:d8356a64-c1c8-46c1-ae4f-c65ed8b4eb68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:24 GMT" + "Tue, 27 Oct 2020 03:00:38 GMT" ], "Content-Length": [ "398" @@ -495,20 +495,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile7677\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4374\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/052b1b35-db4f-4774-8b9e-6e8a99f4f329?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDUyYjFiMzUtZGI0Zi00Nzc0LThiOWUtNmU4YTk5ZjRmMzI5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/a93ffa0e-eaf3-4ab5-8570-beda0746bb90?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTkzZmZhMGUtZWFmMy00YWI1LTg1NzAtYmVkYTA3NDZiYjkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -519,10 +519,10 @@ "no-cache" ], "x-ms-request-id": [ - "0a642c60-7e1c-42b8-85bc-5a74afd4995b" + "2b455a2b-bec7-4ee2-8178-579c46fff6f1" ], "x-ms-client-request-id": [ - "99fe2bcf-212e-4be2-bd13-e923f4e6e04c" + "63edd3ee-531a-412f-bc4e-6422f6a06500" ], "OData-Version": [ "4.0" @@ -540,19 +540,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11986" ], "x-ms-correlation-request-id": [ - "d59c8140-9463-4ab5-94d0-d96836c82047" + "4749e395-4db0-46a3-8706-6c074adda54a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232635Z:d59c8140-9463-4ab5-94d0-d96836c82047" + "WESTUS:20201027T030049Z:4749e395-4db0-46a3-8706-6c074adda54a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:34 GMT" + "Tue, 27 Oct 2020 03:00:48 GMT" ], "Content-Length": [ "78" @@ -568,16 +568,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/052b1b35-db4f-4774-8b9e-6e8a99f4f329?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDUyYjFiMzUtZGI0Zi00Nzc0LThiOWUtNmU4YTk5ZjRmMzI5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/a93ffa0e-eaf3-4ab5-8570-beda0746bb90?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTkzZmZhMGUtZWFmMy00YWI1LTg1NzAtYmVkYTA3NDZiYjkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -588,10 +588,10 @@ "no-cache" ], "x-ms-request-id": [ - "c04b896e-12e9-4b45-94aa-ff1943e1b69e" + "adb5878f-1967-4647-8473-1e1727d530f7" ], "x-ms-client-request-id": [ - "5c5ad439-72d4-4e6f-a144-edb99bd12349" + "ebb98ede-0f45-44ef-89a4-d4ac40fa54f3" ], "OData-Version": [ "4.0" @@ -609,19 +609,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11985" ], "x-ms-correlation-request-id": [ - "9b5422bc-d7af-460d-9c3b-e19439a060e3" + "fe82e1cf-2a2c-43d7-82c8-981e8a9ea8fa" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232645Z:9b5422bc-d7af-460d-9c3b-e19439a060e3" + "WESTUS:20201027T030100Z:fe82e1cf-2a2c-43d7-82c8-981e8a9ea8fa" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:44 GMT" + "Tue, 27 Oct 2020 03:00:59 GMT" ], "Content-Length": [ "78" @@ -637,16 +637,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/052b1b35-db4f-4774-8b9e-6e8a99f4f329?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDUyYjFiMzUtZGI0Zi00Nzc0LThiOWUtNmU4YTk5ZjRmMzI5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/a93ffa0e-eaf3-4ab5-8570-beda0746bb90?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTkzZmZhMGUtZWFmMy00YWI1LTg1NzAtYmVkYTA3NDZiYjkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -657,10 +657,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc438142-bcd6-4034-bed5-48032f92f010" + "e8c821f1-9386-45bb-b8e7-738b4bcdd427" ], "x-ms-client-request-id": [ - "d05972e3-2e68-41dd-8a7b-7e022f9c49ba" + "6df320fe-b3b2-4866-867c-55af7a2fcd04" ], "OData-Version": [ "4.0" @@ -678,19 +678,88 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11984" ], "x-ms-correlation-request-id": [ - "f4bd6da8-3bb1-4817-8818-2efa531e7121" + "8c49ba91-5b82-4c32-94d4-21f02af06b1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232655Z:f4bd6da8-3bb1-4817-8818-2efa531e7121" + "WESTUS:20201027T030110Z:8c49ba91-5b82-4c32-94d4-21f02af06b1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:55 GMT" + "Tue, 27 Oct 2020 03:01:09 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/a93ffa0e-eaf3-4ab5-8570-beda0746bb90?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTkzZmZhMGUtZWFmMy00YWI1LTg1NzAtYmVkYTA3NDZiYjkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "187db72a-1615-4316-9107-4010e3c8cc49" + ], + "x-ms-client-request-id": [ + "b0d0188a-0346-4f3b-8300-fb2a57006ab5" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11983" + ], + "x-ms-correlation-request-id": [ + "512e491e-d8dd-450e-966c-4384259e1cc7" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T030120Z:512e491e-d8dd-450e-966c-4384259e1cc7" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 03:01:19 GMT" ], "Content-Length": [ "77" @@ -706,16 +775,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -726,10 +795,10 @@ "no-cache" ], "x-ms-request-id": [ - "21ae3efd-82c6-4921-ab95-8e70e9e26a00" + "2149e06f-4faf-4eb5-8b7f-851bca1dd361" ], "x-ms-client-request-id": [ - "f027a771-8e85-4238-9fed-76ee3fddaa11" + "7c9abd87-0417-449d-bccb-9aa8fc8cac66" ], "OData-Version": [ "4.0" @@ -750,16 +819,16 @@ "48" ], "x-ms-correlation-request-id": [ - "bf58e468-04cb-4d77-b2c2-ee36eda1b7e0" + "f21fe272-9cf5-46c8-b41f-0da2c9c2ff08" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232656Z:bf58e468-04cb-4d77-b2c2-ee36eda1b7e0" + "WESTUS:20201027T030121Z:f21fe272-9cf5-46c8-b41f-0da2c9c2ff08" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:56 GMT" + "Tue, 27 Oct 2020 03:01:20 GMT" ], "Content-Length": [ "397" @@ -771,26 +840,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile7677\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4374\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "7c615947-7aaf-4b99-af13-d158581b91e6" + "16f2c29c-d880-40bb-aa24-2e6f53b28479" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -801,10 +870,10 @@ "no-cache" ], "x-ms-request-id": [ - "053c7cc9-703d-4523-bbce-fabab15564b4" + "ca10138b-9494-47e7-ad54-2dd259377c46" ], "x-ms-client-request-id": [ - "7c615947-7aaf-4b99-af13-d158581b91e6" + "16f2c29c-d880-40bb-aa24-2e6f53b28479" ], "OData-Version": [ "4.0" @@ -825,16 +894,16 @@ "47" ], "x-ms-correlation-request-id": [ - "bab803f5-ea82-4995-abbf-7435faab578d" + "17594be7-fa37-4522-9d7c-c5ee2c8c5572" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232657Z:bab803f5-ea82-4995-abbf-7435faab578d" + "WESTUS:20201027T030122Z:17594be7-fa37-4522-9d7c-c5ee2c8c5572" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:57 GMT" + "Tue, 27 Oct 2020 03:01:21 GMT" ], "Content-Length": [ "397" @@ -846,26 +915,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile7677\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile4374\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fcf7cee4-0a68-4e2d-8204-f8a49e141200" + "d844c4a2-2eef-4c97-bde2-df33a1ae1514" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -876,10 +945,10 @@ "no-cache" ], "x-ms-request-id": [ - "379881f9-13b3-41ee-b8c8-ddbbbb772d3d" + "fbd6eb59-ffbc-4ee9-bef2-17b39dfb9f41" ], "x-ms-client-request-id": [ - "fcf7cee4-0a68-4e2d-8204-f8a49e141200" + "d844c4a2-2eef-4c97-bde2-df33a1ae1514" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -897,16 +966,16 @@ "44" ], "x-ms-correlation-request-id": [ - "00365af5-ef3e-482f-8c32-893b32d3d829" + "8b870cf9-47cb-4c09-9e05-316737a49f1a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232717Z:00365af5-ef3e-482f-8c32-893b32d3d829" + "WESTUS:20201027T030143Z:8b870cf9-47cb-4c09-9e05-316737a49f1a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:17 GMT" + "Tue, 27 Oct 2020 03:01:43 GMT" ], "Content-Length": [ "104" @@ -925,22 +994,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NTIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MDA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "aec6f469-102c-44ae-9576-313fbcf3e05f" + "a72a0a6d-1d17-4dc4-828d-7008913a7fd0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -960,13 +1029,13 @@ "10" ], "x-ms-request-id": [ - "78bcd6e9-f4e6-4142-b6e7-b9e5b7361c4d" + "9ac8a583-e721-4df0-b857-c0b432703932" ], "x-ms-client-request-id": [ - "aec6f469-102c-44ae-9576-313fbcf3e05f" + "a72a0a6d-1d17-4dc4-828d-7008913a7fd0" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/6200ea10-90a0-4e6d-ac6f-1f8372a00b39?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/c40b4f98-c23b-41db-810f-1041bc09ebed?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -984,19 +1053,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "23" + "22" ], "x-ms-correlation-request-id": [ - "962b063b-6d32-4519-b011-c9b26dc6f299" + "3a8e8715-17ec-41dd-9db8-c7d301496d17" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232703Z:962b063b-6d32-4519-b011-c9b26dc6f299" + "WESTUS:20201027T030129Z:3a8e8715-17ec-41dd-9db8-c7d301496d17" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:02 GMT" + "Tue, 27 Oct 2020 03:01:28 GMT" ], "Content-Length": [ "398" @@ -1008,26 +1077,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5521\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6006\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c8d2ca5c-b11e-40dd-b115-11ce8ca2f303" + "8a53cc1a-64d7-4829-bbde-d676e5702af1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1038,19 +1107,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/4ad7165c-a255-4822-993a-c6eb9d5748f2/profileresults/profile7677?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/40b71d81-9b66-4a80-9f7e-282937f5940a/profileresults/profile4374?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "8e3c0765-3311-49fa-899c-9ff59b5b75fe" + "4cfc4b9e-88a5-40b3-979f-96148d8a5ea5" ], "x-ms-client-request-id": [ - "c8d2ca5c-b11e-40dd-b115-11ce8ca2f303" + "8a53cc1a-64d7-4829-bbde-d676e5702af1" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/4ad7165c-a255-4822-993a-c6eb9d5748f2?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/40b71d81-9b66-4a80-9f7e-282937f5940a?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1068,16 +1137,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "45a3e15a-c68e-42e7-b445-c90606dca16d" + "b3f85359-c7a7-4e31-97b2-1c28d374a4c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232705Z:45a3e15a-c68e-42e7-b445-c90606dca16d" + "WESTUS:20201027T030131Z:b3f85359-c7a7-4e31-97b2-1c28d374a4c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:05 GMT" + "Tue, 27 Oct 2020 03:01:31 GMT" ], "Expires": [ "-1" @@ -1090,16 +1159,16 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/4ad7165c-a255-4822-993a-c6eb9d5748f2?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGFkNzE2NWMtYTI1NS00ODIyLTk5M2EtYzZlYjlkNTc0OGYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/40b71d81-9b66-4a80-9f7e-282937f5940a?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDBiNzFkODEtOWI2Ni00YTgwLTlmN2UtMjgyOTM3ZjU5NDBhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1110,10 +1179,10 @@ "no-cache" ], "x-ms-request-id": [ - "01e01e95-e220-4f6c-beda-35598ac75fcd" + "d20f88be-b659-4958-9eca-fbfd3ebd9038" ], "x-ms-client-request-id": [ - "f120ac93-6258-432c-aa88-5f216b9a249b" + "2b8c66e4-d01d-4f2c-a3e5-43e32e30ff53" ], "OData-Version": [ "4.0" @@ -1131,19 +1200,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11982" ], "x-ms-correlation-request-id": [ - "581acd3d-a06e-449c-b469-86b35762a120" + "d62dd836-7d85-4388-bce7-439ee1a07710" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232716Z:581acd3d-a06e-449c-b469-86b35762a120" + "WESTUS:20201027T030142Z:d62dd836-7d85-4388-bce7-439ee1a07710" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:15 GMT" + "Tue, 27 Oct 2020 03:01:41 GMT" ], "Content-Length": [ "77" @@ -1159,16 +1228,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/4ad7165c-a255-4822-993a-c6eb9d5748f2/profileresults/profile7677?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGFkNzE2NWMtYTI1NS00ODIyLTk5M2EtYzZlYjlkNTc0OGYyL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU3Njc3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/40b71d81-9b66-4a80-9f7e-282937f5940a/profileresults/profile4374?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDBiNzFkODEtOWI2Ni00YTgwLTlmN2UtMjgyOTM3ZjU5NDBhL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU0Mzc0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1179,10 +1248,10 @@ "no-cache" ], "x-ms-request-id": [ - "d7ae7a77-3a2d-4fbc-b976-7614d1a37a70" + "abbc4564-0888-45cd-96a0-17d7c6c4c5ed" ], "x-ms-client-request-id": [ - "37480d67-c7d4-4781-9d04-93319386fd80" + "e67c1776-4e58-424a-9ddf-340a72df0669" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1197,19 +1266,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11981" ], "x-ms-correlation-request-id": [ - "fa26890f-aa09-4936-ae6e-041c0968d4de" + "88a1f6f4-67d0-4aa4-bf43-35f6dcc87704" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232716Z:fa26890f-aa09-4936-ae6e-041c0968d4de" + "WESTUS:20201027T030142Z:88a1f6f4-67d0-4aa4-bf43-35f6dcc87704" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:27:16 GMT" + "Tue, 27 Oct 2020 03:01:42 GMT" ], "Content-Length": [ "104" @@ -1228,22 +1297,22 @@ "StatusCode": 404 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NTIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MDA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c4a15bd6-4da7-4497-95ad-a3d1ac41b427" + "532ad5f7-4be7-4c06-abe9-6478c1c287e4" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1254,19 +1323,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/3ddc7b08-0e07-4fac-9958-fcc85b54929b/profileresults/profile5521?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/beaec931-cf6f-4fec-b9be-e76131d99557/profileresults/profile6006?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "52fddbe2-37f9-474c-858a-0b93735b0aa2" + "6e204543-0509-42d2-ade7-8b3fb61edf7e" ], "x-ms-client-request-id": [ - "c4a15bd6-4da7-4497-95ad-a3d1ac41b427" + "532ad5f7-4be7-4c06-abe9-6478c1c287e4" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/operationresults/3ddc7b08-0e07-4fac-9958-fcc85b54929b?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/operationresults/beaec931-cf6f-4fec-b9be-e76131d99557?api-version=2020-04-15" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1284,16 +1353,16 @@ "14998" ], "x-ms-correlation-request-id": [ - "49eacd3e-da47-406d-923b-866731934d3b" + "d3676585-3a89-4d96-8ee1-931f44e85db9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232823Z:49eacd3e-da47-406d-923b-866731934d3b" + "WESTUS:20201027T030248Z:d3676585-3a89-4d96-8ee1-931f44e85db9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:28:23 GMT" + "Tue, 27 Oct 2020 03:02:48 GMT" ], "Expires": [ "-1" @@ -1306,22 +1375,22 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NTIxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MDA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4ae9e5f3-2888-4a55-9f88-639f277925be" + "0b6b97a8-964d-4c89-bbb4-c99368aea9bc" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1332,10 +1401,10 @@ "no-cache" ], "x-ms-request-id": [ - "e4477323-1feb-44c1-bf40-6ee2b9c465cd" + "ad060c0d-19dd-483c-a6fa-4f1427dcc5d8" ], "x-ms-client-request-id": [ - "4ae9e5f3-2888-4a55-9f88-639f277925be" + "0b6b97a8-964d-4c89-bbb4-c99368aea9bc" ], "OData-Version": [ "4.0" @@ -1356,16 +1425,16 @@ "42" ], "x-ms-correlation-request-id": [ - "af483801-513d-4611-a899-29bd0c9fa574" + "dee7b3c6-f70f-4ba7-bca2-178c34b6726a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232824Z:af483801-513d-4611-a899-29bd0c9fa574" + "WESTUS:20201027T030249Z:dee7b3c6-f70f-4ba7-bca2-178c34b6726a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:28:23 GMT" + "Tue, 27 Oct 2020 03:02:49 GMT" ], "Content-Length": [ "399" @@ -1377,25 +1446,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5521\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850/providers/Microsoft.Cdn/profiles/profile5521\",\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\": \"Deleting\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile6006\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187/providers/Microsoft.Cdn/profiles/profile6006\",\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\": \"Deleting\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1850?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxODUwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8187?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4MTg3P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1784c3fd-8352-4c59-965c-0d8b9869aa05" + "4345825a-f0c1-4337-a3e8-c0d39696232f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1407,7 +1476,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1416,13 +1485,13 @@ "14999" ], "x-ms-request-id": [ - "764912b8-02eb-4e88-9d03-f7a523c38c24" + "1dbe17ba-a3ac-4212-b4ec-0602f6dba887" ], "x-ms-correlation-request-id": [ - "764912b8-02eb-4e88-9d03-f7a523c38c24" + "1dbe17ba-a3ac-4212-b4ec-0602f6dba887" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232924Z:764912b8-02eb-4e88-9d03-f7a523c38c24" + "WESTUS:20201027T030350Z:1dbe17ba-a3ac-4212-b4ec-0602f6dba887" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1431,7 +1500,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:29:24 GMT" + "Tue, 27 Oct 2020 03:03:49 GMT" ], "Expires": [ "-1" @@ -1444,15 +1513,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcxTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPREU0TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1464,7 +1533,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1473,13 +1542,13 @@ "11999" ], "x-ms-request-id": [ - "8d9e5f44-53f8-4435-b412-6abf4ab855ba" + "a5c094cf-a161-4e81-a24e-917f686b6482" ], "x-ms-correlation-request-id": [ - "8d9e5f44-53f8-4435-b412-6abf4ab855ba" + "a5c094cf-a161-4e81-a24e-917f686b6482" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232939Z:8d9e5f44-53f8-4435-b412-6abf4ab855ba" + "WESTUS:20201027T030405Z:a5c094cf-a161-4e81-a24e-917f686b6482" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1488,7 +1557,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:29:38 GMT" + "Tue, 27 Oct 2020 03:04:04 GMT" ], "Expires": [ "-1" @@ -1501,15 +1570,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcxTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPREU0TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1521,7 +1590,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1530,13 +1599,13 @@ "11998" ], "x-ms-request-id": [ - "53fe2e0f-d7d6-4649-9619-ac5171c812c2" + "acabc723-7bd1-46f1-ae70-1b741fe35047" ], "x-ms-correlation-request-id": [ - "53fe2e0f-d7d6-4649-9619-ac5171c812c2" + "acabc723-7bd1-46f1-ae70-1b741fe35047" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232954Z:53fe2e0f-d7d6-4649-9619-ac5171c812c2" + "WESTUS:20201027T030420Z:acabc723-7bd1-46f1-ae70-1b741fe35047" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1545,7 +1614,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:29:53 GMT" + "Tue, 27 Oct 2020 03:04:19 GMT" ], "Expires": [ "-1" @@ -1558,15 +1627,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcxTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPREU0TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1581,13 +1650,13 @@ "11997" ], "x-ms-request-id": [ - "fc13ef15-233a-4aa4-87b1-9097fc81ea87" + "3a11f13d-c9cf-4206-8649-6319579aa6d0" ], "x-ms-correlation-request-id": [ - "fc13ef15-233a-4aa4-87b1-9097fc81ea87" + "3a11f13d-c9cf-4206-8649-6319579aa6d0" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233009Z:fc13ef15-233a-4aa4-87b1-9097fc81ea87" + "WESTUS:20201027T030435Z:3a11f13d-c9cf-4206-8649-6319579aa6d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1596,7 +1665,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:09 GMT" + "Tue, 27 Oct 2020 03:04:35 GMT" ], "Expires": [ "-1" @@ -1609,15 +1678,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTg1MC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGcxTUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODE4Ny1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPREU0TnkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1632,13 +1701,13 @@ "11996" ], "x-ms-request-id": [ - "a5176001-89e0-43ef-9e91-1e3bff87d855" + "a9d2784a-385d-493a-9efc-8be6b7fcddfa" ], "x-ms-correlation-request-id": [ - "a5176001-89e0-43ef-9e91-1e3bff87d855" + "a9d2784a-385d-493a-9efc-8be6b7fcddfa" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233009Z:a5176001-89e0-43ef-9e91-1e3bff87d855" + "WESTUS:20201027T030435Z:a9d2784a-385d-493a-9efc-8be6b7fcddfa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1647,7 +1716,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:30:09 GMT" + "Tue, 27 Oct 2020 03:04:35 GMT" ], "Expires": [ "-1" @@ -1662,11 +1731,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup1850" + "cdnResourceGroup8187" ], "ProfileGetListTest": [ - "profile7677", - "profile5521" + "profile4374", + "profile6006" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileListBySubcriptionTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileListBySubcriptionTest.json index 5a5d06decad19..8554498a2cfda 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileListBySubcriptionTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileListBySubcriptionTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "b78fc90d-cb5a-4db7-85bc-85351f0b830d" + "dcaaac9a-c583-4439-a5e8-6e5c70109dd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "8242128b-4014-4caa-9c39-198ca52fb5d7" + "188dc0cb-4c6b-4175-8471-32252b6d6ff4" ], "x-ms-correlation-request-id": [ - "8242128b-4014-4caa-9c39-198ca52fb5d7" + "188dc0cb-4c6b-4175-8471-32252b6d6ff4" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230206Z:8242128b-4014-4caa-9c39-198ca52fb5d7" + "WESTUS:20201028T235407Z:188dc0cb-4c6b-4175-8471-32252b6d6ff4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:05 GMT" + "Wed, 28 Oct 2020 23:54:06 GMT" ], "Content-Length": [ "193" @@ -63,7 +63,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1984\",\r\n \"name\": \"cdnResourceGroup1984\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9480\",\r\n \"name\": \"cdnResourceGroup9480\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { @@ -73,16 +73,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "abe385b3-5dd0-4220-b5b7-0b2c199ea16f" + "9ab7d72d-b76f-4458-9124-e4f4e24c6d40" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "no-cache" ], "x-ms-request-id": [ - "cc952329-9801-4dc6-8c1f-c07557cad9ab" + "96024faa-e141-4fb5-b99d-31233b1392ca" ], "x-ms-client-request-id": [ - "abe385b3-5dd0-4220-b5b7-0b2c199ea16f" + "9ab7d72d-b76f-4458-9124-e4f4e24c6d40" ], "OData-Version": [ "4.0" @@ -117,19 +117,19 @@ "49" ], "x-ms-correlation-request-id": [ - "e79d58db-712b-4053-8a9c-958f659d0800" + "678dbd9c-74ad-4ab4-b5e1-705fa829dca2" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230209Z:e79d58db-712b-4053-8a9c-958f659d0800" + "WESTUS:20201028T235409Z:678dbd9c-74ad-4ab4-b5e1-705fa829dca2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:09 GMT" + "Wed, 28 Oct 2020 23:54:09 GMT" ], "Content-Length": [ - "40377" + "43087" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -138,7 +138,7 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"private-link\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/private-link\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2354/providers/Microsoft.Cdn/profiles/profile793\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"test11111\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test11111\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"ggnng\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/ggnng\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"142536\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/142536\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-test-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-test-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"qwerty\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/qwerty\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"hata-afd-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-afd-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"nachakra-msftstd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-msftstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"roku-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/roku-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"ResourceNameTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/ResourceNameTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\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\": \"wertsdftsdft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/wertsdftsdft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AFDTesting\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/AFDTesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"nachakra-testportal\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-testportal\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"test1234\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test1234\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"CachingRuleTest-akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AaronTest/providers/Microsoft.Cdn/profiles/CachingRuleTest-akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"Akamai403Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/Akamai403Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"location\": \"WestEurope\",\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\": \"testDeliveryRules\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testDeliveryRules\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CostElement\": \"HC02917\",\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"testmarketplacedelivery\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testmarketplacedelivery\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"AkamaiTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"testkey1\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"statictest123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/akucer-test/providers/Microsoft.Cdn/profiles/statictest123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"sadfgasdfasd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azfdtest.xyz/providers/Microsoft.Cdn/profiles/sadfgasdfasd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"testabcdef\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testabcdef\",\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\": \"AkamaiQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AkamaiProdStagingTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/AkamaiProdStagingTest\",\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\": \"hata-verizonPrime\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-verizonPrime\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"hata-akamai-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-akamai-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AkamaiCustomDomainTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiCustomDomainTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"vfbbgf\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/vfbbgf\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testakamai524\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testakamai524\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdn-roku-premium\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/cdn-roku-premium\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AkamaiTestProfile2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfilenewPackage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfilenewPackage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"inzarifTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/inzarifTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiWiredPortalTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiWiredPortalTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"premiumcdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/premiumcdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"VerizonPremiumTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonPremiumTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile-test-afd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/profile-test-afd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"VerizonQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"cdn-test-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/cdn-test-profile\",\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\": \"newProfileNewPackage\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfileNewPackage\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"SouthCentralUs\",\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}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"publicpreviewtest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/DefaultResourceGroup-WEU/providers/Microsoft.Cdn/profiles/publicpreviewtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Msft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Msft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"E2e-Test-Profile-1-a141aedd-0f68-4487-be17-1105c6852c65\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-a141aedd-0f68-4487-be17-1105c6852c65\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-testinprod\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-testinprod\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Endpoint-Tests-3\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Endpoint-Tests-3\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"nachakrafdv2roxytest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakrafdv2roxytest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-00f00070-ada6-44d2-8242-4c9b02f9de49\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-00f00070-ada6-44d2-8242-4c9b02f9de49\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage4\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage4\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-staging\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-staging\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage3\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage3\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-mpac\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-mpac\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginrelease\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginpr/providers/Microsoft.Cdn/profiles/multioriginrelease\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-14ea85fa-b1a1-4645-85a6-1afc5da6a37e\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-14ea85fa-b1a1-4645-85a6-1afc5da6a37e\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Endpoint-Tests-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Endpoint-Tests-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinadell123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sinadell123/providers/Microsoft.Cdn/profiles/sinadell123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rgchartest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试22/providers/Microsoft.Cdn/profiles/rgchartest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-4eb1250b-f659-47cd-b297-dd2782bf93a7\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-4eb1250b-f659-47cd-b297-dd2782bf93a7\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-fc1d9e8f-bb4d-436e-9108-d24b0232c212\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-fc1d9e8f-bb4d-436e-9108-d24b0232c212\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-b5e38d8a-97ed-4621-b61b-b7dfe8a08da4\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-b5e38d8a-97ed-4621-b61b-b7dfe8a08da4\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-80e931ca-8b76-4b72-8759-56908150b61e\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-80e931ca-8b76-4b72-8759-56908150b61e\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-d56dde4e-3090-4c0a-9c47-d71385e53295\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-d56dde4e-3090-4c0a-9c47-d71385e53295\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-ebda85f3-7b06-4045-946b-49b14093dba0\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-ebda85f3-7b06-4045-946b-49b14093dba0\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-9cc696ba-dce2-4689-9a50-17b4903118f8\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-9cc696ba-dce2-4689-9a50-17b4903118f8\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"ravindptest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindpcdn/providers/Microsoft.Cdn/profiles/ravindptest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-86c1eae4-8300-4f64-b8f2-576442ef7fe9\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-86c1eae4-8300-4f64-b8f2-576442ef7fe9\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-43098b83-05a1-44bb-b1ba-615fafc906b5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-43098b83-05a1-44bb-b1ba-615fafc906b5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-7f7bc7ee-7ccf-4eb8-90b7-eee00a92e6f5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-7f7bc7ee-7ccf-4eb8-90b7-eee00a92e6f5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-d74cb541-370c-4718-89f4-d8c34d9fa558\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-d74cb541-370c-4718-89f4-d8c34d9fa558\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-91fcf2f2-2a4c-4050-90f5-987566da182b\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-91fcf2f2-2a4c-4050-90f5-987566da182b\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-91fcfaa3-e111-4fa4-b3bf-8153d7f5420f\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-91fcfaa3-e111-4fa4-b3bf-8153d7f5420f\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-57516f4f-4c8c-4517-8336-f229939182cb\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-57516f4f-4c8c-4517-8336-f229939182cb\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-c4a1b29c-f956-4ab6-96fe-4446e87c66af\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-c4a1b29c-f956-4ab6-96fe-4446e87c66af\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"name\": \"E2e-Test-Profile-1-647ca606-0ccc-42d1-a317-1eb44fa4e6ca\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-647ca606-0ccc-42d1-a317-1eb44fa4e6ca\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-0ad060df-7297-467a-bf80-47a73350fc40\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-0ad060df-7297-467a-bf80-47a73350fc40\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-df1759ec-99c4-45de-9ba6-c8bdb40a7589\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-df1759ec-99c4-45de-9ba6-c8bdb40a7589\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-71d7f211-3ffc-4fc4-853f-48b2c569a3a0\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-71d7f211-3ffc-4fc4-853f-48b2c569a3a0\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"verizonstd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/DefaultResourceGroup-WEU/providers/Microsoft.Cdn/profiles/verizonstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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 }, { @@ -148,16 +148,16 @@ "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a1bcabf2-72b1-4b01-ac3a-778b4a6247d5" + "4f3f71dd-a363-4d0f-9cbf-9ca4a2835d8e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -168,10 +168,10 @@ "no-cache" ], "x-ms-request-id": [ - "426ccaae-bbfe-468d-86a7-ee05a22237da" + "c13b5c36-139c-44b3-a590-57854777d648" ], "x-ms-client-request-id": [ - "a1bcabf2-72b1-4b01-ac3a-778b4a6247d5" + "4f3f71dd-a363-4d0f-9cbf-9ca4a2835d8e" ], "OData-Version": [ "4.0" @@ -192,19 +192,19 @@ "46" ], "x-ms-correlation-request-id": [ - "c3a656f8-7c38-4536-a735-0bbdf1a131f1" + "0c24e3b3-aea5-4fa5-8279-223fe8c34637" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230250Z:c3a656f8-7c38-4536-a735-0bbdf1a131f1" + "WESTUS:20201028T235502Z:0c24e3b3-aea5-4fa5-8279-223fe8c34637" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:49 GMT" + "Wed, 28 Oct 2020 23:55:01 GMT" ], "Content-Length": [ - "40397" + "43087" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -213,101 +213,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"private-link\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/private-link\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2354/providers/Microsoft.Cdn/profiles/profile793\",\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\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"qwerty\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/qwerty\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"hata-test-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-test-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"test11111\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test11111\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AFDTesting\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/AFDTesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"142536\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/142536\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"roku-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/roku-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"ggnng\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/ggnng\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"CachingRuleTest-akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AaronTest/providers/Microsoft.Cdn/profiles/CachingRuleTest-akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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-testportal\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-testportal\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"vfbbgf\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/vfbbgf\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile391\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391\",\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\": \"hata-verizonPrime\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-verizonPrime\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_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\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-msftstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"test1234\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test1234\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-roku-premium\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/cdn-roku-premium\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"wertsdftsdft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/wertsdftsdft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-afd-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-afd-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"ResourceNameTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/ResourceNameTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\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\": \"statictest123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/akucer-test/providers/Microsoft.Cdn/profiles/statictest123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-akamai-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-akamai-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiProdStagingTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/AkamaiProdStagingTest\",\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\": \"sadfgasdfasd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azfdtest.xyz/providers/Microsoft.Cdn/profiles/sadfgasdfasd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AkamaiTestProfile2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfileNewPackage\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfileNewPackage\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"SouthCentralUs\",\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\": \"premiumcdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/premiumcdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"testabcdef\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testabcdef\",\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\": \"Akamai403Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/Akamai403Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"location\": \"WestEurope\",\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\": \"testakamai524\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testakamai524\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiCustomDomainTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiCustomDomainTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"inzarifTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/inzarifTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"VerizonPremiumTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonPremiumTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile-test-afd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/profile-test-afd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"testDeliveryRules\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testDeliveryRules\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CostElement\": \"HC02917\",\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"testmarketplacedelivery\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testmarketplacedelivery\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"AkamaiTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"testkey1\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"cdn-test-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/cdn-test-profile\",\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\": \"AkamaiWiredPortalTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiWiredPortalTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfilenewPackage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfilenewPackage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage4\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage4\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-4eb1250b-f659-47cd-b297-dd2782bf93a7\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-4eb1250b-f659-47cd-b297-dd2782bf93a7\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"publicpreviewtest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/DefaultResourceGroup-WEU/providers/Microsoft.Cdn/profiles/publicpreviewtest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-mpac\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-mpac\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"E2e-Test-Profile-1-a141aedd-0f68-4487-be17-1105c6852c65\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-a141aedd-0f68-4487-be17-1105c6852c65\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"sinadell123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sinadell123/providers/Microsoft.Cdn/profiles/sinadell123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage3\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage3\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Msft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Msft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"Cdn-E2e-Endpoint-Tests-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Endpoint-Tests-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-stage1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-stage1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-testinprod\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-testinprod\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginrelease\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginpr/providers/Microsoft.Cdn/profiles/multioriginrelease\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Endpoint-Tests-3\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Endpoint-Tests-3\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-d56dde4e-3090-4c0a-9c47-d71385e53295\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-d56dde4e-3090-4c0a-9c47-d71385e53295\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"Cdn-E2e-CustomDomain-Tests-1-global\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-00f00070-ada6-44d2-8242-4c9b02f9de49\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-00f00070-ada6-44d2-8242-4c9b02f9de49\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-CustomDomain-Tests-1-global-staging\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-CustomDomain-Tests-1-global-staging\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rgchartest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试22/providers/Microsoft.Cdn/profiles/rgchartest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-fc1d9e8f-bb4d-436e-9108-d24b0232c212\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-fc1d9e8f-bb4d-436e-9108-d24b0232c212\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-80e931ca-8b76-4b72-8759-56908150b61e\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-80e931ca-8b76-4b72-8759-56908150b61e\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-91fcfaa3-e111-4fa4-b3bf-8153d7f5420f\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-91fcfaa3-e111-4fa4-b3bf-8153d7f5420f\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-91fcf2f2-2a4c-4050-90f5-987566da182b\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-91fcf2f2-2a4c-4050-90f5-987566da182b\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-647ca606-0ccc-42d1-a317-1eb44fa4e6ca\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-647ca606-0ccc-42d1-a317-1eb44fa4e6ca\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-7f7bc7ee-7ccf-4eb8-90b7-eee00a92e6f5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-7f7bc7ee-7ccf-4eb8-90b7-eee00a92e6f5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-d74cb541-370c-4718-89f4-d8c34d9fa558\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-d74cb541-370c-4718-89f4-d8c34d9fa558\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-ebda85f3-7b06-4045-946b-49b14093dba0\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-ebda85f3-7b06-4045-946b-49b14093dba0\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"E2e-Test-Profile-1-86c1eae4-8300-4f64-b8f2-576442ef7fe9\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-86c1eae4-8300-4f64-b8f2-576442ef7fe9\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"E2e-Test-Profile-1-43098b83-05a1-44bb-b1ba-615fafc906b5\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-43098b83-05a1-44bb-b1ba-615fafc906b5\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-57516f4f-4c8c-4517-8336-f229939182cb\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-57516f4f-4c8c-4517-8336-f229939182cb\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakrafdv2roxytest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakrafdv2roxytest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"ravindptest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindpcdn/providers/Microsoft.Cdn/profiles/ravindptest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-df1759ec-99c4-45de-9ba6-c8bdb40a7589\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-df1759ec-99c4-45de-9ba6-c8bdb40a7589\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"verizonstd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/DefaultResourceGroup-WEU/providers/Microsoft.Cdn/profiles/verizonstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-14ea85fa-b1a1-4645-85a6-1afc5da6a37e\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-14ea85fa-b1a1-4645-85a6-1afc5da6a37e\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-b5e38d8a-97ed-4621-b61b-b7dfe8a08da4\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-b5e38d8a-97ed-4621-b61b-b7dfe8a08da4\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-9cc696ba-dce2-4689-9a50-17b4903118f8\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-9cc696ba-dce2-4689-9a50-17b4903118f8\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-0ad060df-7297-467a-bf80-47a73350fc40\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-0ad060df-7297-467a-bf80-47a73350fc40\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-71d7f211-3ffc-4fc4-853f-48b2c569a3a0\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-71d7f211-3ffc-4fc4-853f-48b2c569a3a0\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"E2e-Test-Profile-1-c4a1b29c-f956-4ab6-96fe-4446e87c66af\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/E2e-Test-Profile-1-c4a1b29c-f956-4ab6-96fe-4446e87c66af\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Deleting\"\r\n }\r\n },\r\n {\r\n \"name\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyOTc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "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": { "x-ms-client-request-id": [ - "8b8ac650-005b-447b-b193-b078fda5e4aa" + "874571d0-3776-4943-a931-44bfcee41e2f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5e278e31-fea2-48d0-bb77-75db9f3b4e7c" - ], - "x-ms-client-request-id": [ - "8b8ac650-005b-447b-b193-b078fda5e4aa" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "44" - ], - "x-ms-correlation-request-id": [ - "c2de9ce3-00aa-4b23-b8e3-f8b55e24394a" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230326Z:c2de9ce3-00aa-4b23-b8e3-f8b55e24394a" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:26 GMT" - ], - "Content-Length": [ - "40412" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"private-link\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/private-link\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2354/providers/Microsoft.Cdn/profiles/profile793\",\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\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"vfbbgf\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/vfbbgf\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"profile391\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"wertsdftsdft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/wertsdftsdft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"roku-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/roku-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"ggnng\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/ggnng\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"hata-test-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-test-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"test11111\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test11111\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"test1234\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test1234\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-verizonPrime\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-verizonPrime\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"142536\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/142536\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"nachakra-testportal\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-testportal\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiProdStagingTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/AkamaiProdStagingTest\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile1338\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338\",\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\": \"cdn-roku-premium\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/cdn-roku-premium\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"qwerty\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/qwerty\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-afd-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-afd-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"ResourceNameTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/ResourceNameTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\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\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-msftstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"testabcdef\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testabcdef\",\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\": \"AkamaiTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"testkey1\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"Akamai403Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/Akamai403Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"location\": \"WestEurope\",\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\": \"AFDTesting\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/AFDTesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"CachingRuleTest-akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AaronTest/providers/Microsoft.Cdn/profiles/CachingRuleTest-akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"hata-akamai-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-akamai-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"premiumcdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/premiumcdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"statictest123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/akucer-test/providers/Microsoft.Cdn/profiles/statictest123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"testDeliveryRules\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testDeliveryRules\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CostElement\": \"HC02917\",\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-test-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/cdn-test-profile\",\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\": \"AkamaiQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"testmarketplacedelivery\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testmarketplacedelivery\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"AkamaiCustomDomainTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiCustomDomainTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiWiredPortalTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiWiredPortalTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"inzarifTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/inzarifTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"profile-test-afd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/profile-test-afd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfileNewPackage\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfileNewPackage\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"SouthCentralUs\",\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\": \"testakamai524\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testakamai524\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"sadfgasdfasd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azfdtest.xyz/providers/Microsoft.Cdn/profiles/sadfgasdfasd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AkamaiTestProfile2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfilenewPackage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfilenewPackage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "3f69c695-53e3-4b82-8081-192ec2be6337" - ], - "Accept-Language": [ - "en-US" + "application/json; charset=utf-8" ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "Content-Length": [ + "142" ] }, "ResponseHeaders": { @@ -317,11 +248,17 @@ "Pragma": [ "no-cache" ], + "Retry-After": [ + "10" + ], "x-ms-request-id": [ - "36549584-887b-4f48-9b77-8f4b65c18245" + "5c59f430-f6a4-4014-b8de-071c96ffc39d" ], "x-ms-client-request-id": [ - "3f69c695-53e3-4b82-8081-192ec2be6337" + "874571d0-3776-4943-a931-44bfcee41e2f" + ], + "Azure-AsyncOperation": [ + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/operationresults/cb24c7c2-53de-48b4-a3fb-7eab4e0f3d8f?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -339,50 +276,44 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "43" + "24" ], "x-ms-correlation-request-id": [ - "33217491-b8ae-4211-8e8c-4236a24d92be" + "a57f364f-8694-45fd-bd85-49f6fbc83e4e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230341Z:33217491-b8ae-4211-8e8c-4236a24d92be" + "WESTUS:20201028T235416Z:a57f364f-8694-45fd-bd85-49f6fbc83e4e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:03:40 GMT" + "Wed, 28 Oct 2020 23:54:15 GMT" ], "Content-Length": [ - "40399" + "398" ], "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" + "application/json; odata.metadata=minimal" ], "Expires": [ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2354/providers/Microsoft.Cdn/profiles/profile793\",\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\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"profile1338\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"qwerty\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/qwerty\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"142536\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/142536\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"ggnng\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/ggnng\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"hata-verizonPrime\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-verizonPrime\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdn-roku-premium\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/cdn-roku-premium\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"CachingRuleTest-akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AaronTest/providers/Microsoft.Cdn/profiles/CachingRuleTest-akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"wertsdftsdft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/wertsdftsdft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"roku-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/roku-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-test-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-test-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"vfbbgf\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/vfbbgf\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AFDTesting\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/AFDTesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"hata-afd-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-afd-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"test1234\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test1234\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"Akamai403Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/Akamai403Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"location\": \"WestEurope\",\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\": \"testakamai524\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testakamai524\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"testabcdef\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testabcdef\",\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\": \"AkamaiQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiProdStagingTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/AkamaiProdStagingTest\",\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\": \"testDeliveryRules\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testDeliveryRules\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CostElement\": \"HC02917\",\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"AkamaiWiredPortalTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiWiredPortalTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiCustomDomainTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiCustomDomainTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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-msftstd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-msftstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AkamaiTestProfile2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"inzarifTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/inzarifTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"private-link\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/private-link\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"hata-akamai-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-akamai-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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-testportal\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-testportal\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"ResourceNameTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/ResourceNameTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\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\": \"statictest123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/akucer-test/providers/Microsoft.Cdn/profiles/statictest123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"testmarketplacedelivery\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testmarketplacedelivery\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"cdn-test-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/cdn-test-profile\",\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\": \"sadfgasdfasd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azfdtest.xyz/providers/Microsoft.Cdn/profiles/sadfgasdfasd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AkamaiTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"testkey1\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test11111\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test11111\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"newProfilenewPackage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfilenewPackage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"premiumcdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/premiumcdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile-test-afd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/profile-test-afd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfileNewPackage\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfileNewPackage\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"SouthCentralUs\",\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\": \"VerizonPremiumTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonPremiumTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n }\r\n ]\r\n}", - "StatusCode": 200 + "ResponseBody": "{\r\n \"name\": \"profile2978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/providers/Microsoft.Cdn/profiles?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/operationresults/cb24c7c2-53de-48b4-a3fb-7eab4e0f3d8f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2IyNGM3YzItNTNkZS00OGI0LWEzZmItN2VhYjRlMGYzZDhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "9eb28a96-9eeb-414d-9463-112b3a5be9d0" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -393,10 +324,10 @@ "no-cache" ], "x-ms-request-id": [ - "0254d4e9-c77b-4d6d-828b-51c63a738e1f" + "7d8950d9-d310-4fae-b652-beeee317a6ad" ], "x-ms-client-request-id": [ - "9eb28a96-9eeb-414d-9463-112b3a5be9d0" + "dcd3adc6-179f-48b0-880a-cc339864db71" ], "OData-Version": [ "4.0" @@ -413,23 +344,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "42" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11999" ], "x-ms-correlation-request-id": [ - "8837b5c6-5501-4c36-87ca-5cd2b37fbb06" + "8b1d0e35-2658-4f23-95dd-480da40b326a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230356Z:8837b5c6-5501-4c36-87ca-5cd2b37fbb06" + "WESTUS:20201028T235426Z:8b1d0e35-2658-4f23-95dd-480da40b326a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:03:56 GMT" + "Wed, 28 Oct 2020 23:54:26 GMT" ], "Content-Length": [ - "40377" + "78" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -438,107 +369,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"sri-URLSigning-CDNProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sri-URLSigning-CDNProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"VerizonRev4Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/VerizonRev4Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"cdn-prof-temp\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn_res_group_temp/providers/Microsoft.Cdn/profiles/cdn-prof-temp\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/varunch/providers/Microsoft.Cdn/profiles/test123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"puyuCdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/TestPuyu/providers/Microsoft.Cdn/profiles/puyuCdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"twitter-card-image-default-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/twitter-card-image-default-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-temp-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-temp-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"xujiaPremiumVerizonBYP1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaPremiumVerizonBYP1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"RRVz\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/RRVz\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"zhdencdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/zhden-rp-test/providers/Microsoft.Cdn/profiles/zhdencdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-Akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-Akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"xujiaStandardVerizonForUpgrade\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/xujiaStandardVerizonForUpgrade\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"nachakra-multiorigin-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/nachakra-multiorigin-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"CdnProfile100\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/xujia/providers/Microsoft.Cdn/profiles/CdnProfile100\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"displayName\": \"CdnProfile100\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"GuruProdProfile1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/gubalasu-rg/providers/Microsoft.Cdn/profiles/GuruProdProfile1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sindhuricdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sindhuricdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"random\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/random\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"private-link\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/private-link\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdnsecondprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdnsecondprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile6760\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4013/providers/Microsoft.Cdn/profiles/profile6760\",\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\": \"profile7988\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3906/providers/Microsoft.Cdn/profiles/profile7988\",\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 },\r\n {\r\n \"name\": \"jomejia-msft-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/jomejia-rg/providers/Microsoft.Cdn/profiles/jomejia-msft-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriCDNProfile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriCDNProfile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"MSCdnProfileRandom123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/MSCdnProfileRandom123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"cdn-profile-123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"rrms2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrms2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"rrvz2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rrahultest/providers/Microsoft.Cdn/profiles/rrvz2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestCentralUs\",\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\": \"testtesttest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testtesttest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"multioriginbugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/multioriginbugbash/providers/Microsoft.Cdn/profiles/multioriginbugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sinallop\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/SINADELL-TEST-RG/providers/Microsoft.Cdn/profiles/sinallop\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ind\": \"sdd\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile793\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2354/providers/Microsoft.Cdn/profiles/profile793\",\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\": \"profile5178\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1588/providers/Microsoft.Cdn/profiles/profile5178\",\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\": \"Cdn-E2e-Test-Std-Verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/Cdn-E2e-Test-Std-Verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test0618-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/ravindp-westus/providers/Microsoft.Cdn/profiles/test0618-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"cdn-profile-MS\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-MS\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"tesdddjjj\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/中文测试/providers/Microsoft.Cdn/profiles/tesdddjjj\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/pls-test/providers/Microsoft.Cdn/profiles/pls-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"profile1794\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile1794\",\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\": \"las-armtemplate-test-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-armtemplate-test-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"profile7778\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1192/providers/Microsoft.Cdn/profiles/profile7778\",\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 },\r\n {\r\n \"name\": \"las-verizon-arm-test-2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-verizon-arm-test-2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"ReportingEnvironment\": \"Production\",\r\n \"ReportingValuestream\": \"VS_Marketing-100\",\r\n \"ReportingComponent\": \"Cdn\"\r\n },\r\n \"location\": \"Global\",\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\": \"qwerty\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/qwerty\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"newUXTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUXTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"sriTestCDN-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/sriTestCDN-profile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"ggnng\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/ggnng\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AFDTesting\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/AFDTesting\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"hata-afd-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-afd-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"roku-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/roku-test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"wertsdftsdft\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/wertsdftsdft\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"AkamaiProdStagingTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/AkamaiProdStagingTest\",\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\": \"hata-akamai-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/hata-akamai-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"profile3645\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8328/providers/Microsoft.Cdn/profiles/profile3645\",\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\": \"profile8458\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5601/providers/Microsoft.Cdn/profiles/profile8458\",\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\": \"profile5913\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup5895/providers/Microsoft.Cdn/profiles/profile5913\",\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 },\r\n {\r\n \"name\": \"profile2440\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4493/providers/Microsoft.Cdn/profiles/profile2440\",\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 },\r\n {\r\n \"name\": \"profile6855\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2709/providers/Microsoft.Cdn/profiles/profile6855\",\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\": \"sindhuri\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/nachakra-rg-test/providers/Microsoft.Cdn/profiles/sindhuri\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"test11111\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test11111\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile1010\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1001/providers/Microsoft.Cdn/profiles/profile1010\",\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\": \"testDeliveryRules\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testDeliveryRules\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CostElement\": \"HC02917\",\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"Akamai403Test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/Akamai403Test\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"test\",\r\n \"test2\": \"test2\"\r\n },\r\n \"location\": \"WestEurope\",\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\": \"testabcdef\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testabcdef\",\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\": \"statictest123\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/akucer-test/providers/Microsoft.Cdn/profiles/statictest123\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"hata-verizonPrime\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-verizonPrime\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"AkamaiTestProfile2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdn-roku-premium\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/cdn-roku-premium\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_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\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-msftstd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-standard-verizon\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdn-e2e-test/providers/Microsoft.Cdn/profiles/cdn-standard-verizon\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"142536\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/142536\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"profile6061\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3491/providers/Microsoft.Cdn/profiles/profile6061\",\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\": \"AkamaiTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"test\": \"testkey1\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"ResourceNameTest\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/ResourceNameTest\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"Event\": \"NFL\",\r\n \"Quarter\": \"3rd\"\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\": \"sadfgasdfasd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azfdtest.xyz/providers/Microsoft.Cdn/profiles/sadfgasdfasd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"cdn-profile-VZ\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/CDNQuickstart/providers/Microsoft.Cdn/profiles/cdn-profile-VZ\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AkamaiCustomDomainTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiCustomDomainTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"inzarifTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/inzarifTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"newProfilenewPackage2\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfilenewPackage2\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"profile-test-afd\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/profile-test-afd\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdntestprofile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/sriResourceGroup/providers/Microsoft.Cdn/profiles/cdntestprofile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"AkamaiWiredPortalTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiWiredPortalTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"profile4812\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2409/providers/Microsoft.Cdn/profiles/profile4812\",\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 },\r\n {\r\n \"name\": \"newProfileNewPackage\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/newProfileNewPackage\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"SouthCentralUs\",\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\": \"las-pls-test\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-test/providers/Microsoft.Cdn/profiles/las-pls-test\",\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\": \"profile9911\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7218/providers/Microsoft.Cdn/profiles/profile9911\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key3\": \"value3\",\r\n \"key4\": \"value4\"\r\n },\r\n \"location\": \"EastUs\",\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\": \"las-pls-bugbash\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/las-pls-bugbash/providers/Microsoft.Cdn/profiles/las-pls-bugbash\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\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\": \"vfbbgf\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/rkesav-rg/providers/Microsoft.Cdn/profiles/vfbbgf\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"hata-test-1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/hata-test-1\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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\": \"VerizonPremiumTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonPremiumTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"newUX\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/newUX/providers/Microsoft.Cdn/profiles/newUX\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"Global\",\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\": \"test1234\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/0508test/providers/Microsoft.Cdn/profiles/test1234\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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 },\r\n {\r\n \"name\": \"CachingRuleTest-akamai\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AaronTest/providers/Microsoft.Cdn/profiles/CachingRuleTest-akamai\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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-testportal\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AFD/providers/Microsoft.Cdn/profiles/nachakra-testportal\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"AkamaiQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/AkamaiQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"cdn-test-profile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/cdn-test-profile\",\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\": \"testakamai524\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/AkamaiApiTest/providers/Microsoft.Cdn/profiles/testakamai524\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\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\": \"testmarketplacedelivery\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/anyresource/providers/Microsoft.Cdn/profiles/testmarketplacedelivery\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"CompanyCode\": \"0973\"\r\n },\r\n \"location\": \"WestCentralUs\",\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\": \"premiumcdn\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/premiumcdn\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\r\n \"location\": \"CentralUs\",\r\n \"sku\": {\r\n \"name\": \"Premium_Verizon\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n },\r\n {\r\n \"name\": \"VerizonQSCTestProfile\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/azuretest/providers/Microsoft.Cdn/profiles/VerizonQSCTestProfile\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {},\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}", + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", - "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": { - "x-ms-client-request-id": [ - "bf16ef5d-7721-4a31-ae59-fdd836792290" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "c93d808c-ff70-47e0-a9a3-d877fb533765" - ], - "x-ms-client-request-id": [ - "bf16ef5d-7721-4a31-ae59-fdd836792290" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/709b3827-c532-40d5-9b18-066898865c34?api-version=2020-04-15" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "24" - ], - "x-ms-correlation-request-id": [ - "1a3ce3c4-1d88-4c09-b026-572c3d859a55" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230216Z:1a3ce3c4-1d88-4c09-b026-572c3d859a55" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:02:15 GMT" - ], - "Content-Length": [ - "396" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile391\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/709b3827-c532-40d5-9b18-066898865c34?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzA5YjM4MjctYzUzMi00MGQ1LTliMTgtMDY2ODk4ODY1YzM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/operationresults/cb24c7c2-53de-48b4-a3fb-7eab4e0f3d8f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2IyNGM3YzItNTNkZS00OGI0LWEzZmItN2VhYjRlMGYzZDhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -549,10 +393,10 @@ "no-cache" ], "x-ms-request-id": [ - "41714fcd-62c5-44cb-92ce-c73204d4c773" + "2e0c3d25-20b7-42e1-aabe-2a25a9cb9ef8" ], "x-ms-client-request-id": [ - "fc7bb52a-d7b9-46fe-be6b-ba1d8fa102df" + "4b05f6b8-d271-42c5-9551-7e4a71928d5c" ], "OData-Version": [ "4.0" @@ -570,19 +414,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11998" ], "x-ms-correlation-request-id": [ - "00f5b559-53f1-4ec5-b578-9401c0a5454c" + "34807d32-6864-4a7a-bdac-d88af7e79f03" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230226Z:00f5b559-53f1-4ec5-b578-9401c0a5454c" + "WESTUS:20201028T235436Z:34807d32-6864-4a7a-bdac-d88af7e79f03" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:26 GMT" + "Wed, 28 Oct 2020 23:54:36 GMT" ], "Content-Length": [ "78" @@ -598,16 +442,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/709b3827-c532-40d5-9b18-066898865c34?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzA5YjM4MjctYzUzMi00MGQ1LTliMTgtMDY2ODk4ODY1YzM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/operationresults/cb24c7c2-53de-48b4-a3fb-7eab4e0f3d8f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2IyNGM3YzItNTNkZS00OGI0LWEzZmItN2VhYjRlMGYzZDhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -618,10 +462,10 @@ "no-cache" ], "x-ms-request-id": [ - "5a70fd33-ab92-4ac5-b6a3-e4beb74a7a8f" + "a57014e5-0e35-44df-bae3-a96e289bfd5c" ], "x-ms-client-request-id": [ - "ce27f789-b12f-4d7c-8f30-f92568c40517" + "1c7c31aa-3769-451c-b86a-f6afb36208ce" ], "OData-Version": [ "4.0" @@ -639,19 +483,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11997" ], "x-ms-correlation-request-id": [ - "2834d608-8ab2-49f6-9740-fb5f91d0e4c4" + "8d76b8cc-be34-476a-92b0-68bd15ea49d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230236Z:2834d608-8ab2-49f6-9740-fb5f91d0e4c4" + "WESTUS:20201028T235447Z:8d76b8cc-be34-476a-92b0-68bd15ea49d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:36 GMT" + "Wed, 28 Oct 2020 23:54:46 GMT" ], "Content-Length": [ "78" @@ -667,16 +511,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/709b3827-c532-40d5-9b18-066898865c34?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzA5YjM4MjctYzUzMi00MGQ1LTliMTgtMDY2ODk4ODY1YzM0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/operationresults/cb24c7c2-53de-48b4-a3fb-7eab4e0f3d8f?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvY2IyNGM3YzItNTNkZS00OGI0LWEzZmItN2VhYjRlMGYzZDhmP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -687,10 +531,10 @@ "no-cache" ], "x-ms-request-id": [ - "e7637996-e227-4e97-8bf3-048059d48aae" + "ea55f8e9-6ca5-4a32-99ee-d88cb8ddc42d" ], "x-ms-client-request-id": [ - "4e85790f-a57f-47d9-81a1-840bcbfd3ca5" + "2104091b-572c-4ac1-91d2-3bdbe8e234ad" ], "OData-Version": [ "4.0" @@ -708,19 +552,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11996" ], "x-ms-correlation-request-id": [ - "28ab42b7-0355-4a5c-b1d8-6355ace4ffc7" + "f02b11ef-772c-4469-898d-9b06bc15422e" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230246Z:28ab42b7-0355-4a5c-b1d8-6355ace4ffc7" + "WESTUS:20201028T235457Z:f02b11ef-772c-4469-898d-9b06bc15422e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:46 GMT" + "Wed, 28 Oct 2020 23:54:56 GMT" ], "Content-Length": [ "77" @@ -736,16 +580,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyOTc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -756,10 +600,10 @@ "no-cache" ], "x-ms-request-id": [ - "356317a3-6e27-483f-b1c0-32e416ced341" + "821e03cb-8644-4748-b9ab-7f7532db892b" ], "x-ms-client-request-id": [ - "0036fd80-af4b-467d-9039-d54a28f331f2" + "8f6a8ad3-425b-49b8-ac8b-f7e872d9fd57" ], "OData-Version": [ "4.0" @@ -780,19 +624,19 @@ "48" ], "x-ms-correlation-request-id": [ - "18f76ac4-db5d-475e-abd5-77985da43aca" + "9218c22e-89f9-49c0-9b58-607ed2d24d6f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230247Z:18f76ac4-db5d-475e-abd5-77985da43aca" + "WESTUS:20201028T235458Z:9218c22e-89f9-49c0-9b58-607ed2d24d6f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:47 GMT" + "Wed, 28 Oct 2020 23:54:57 GMT" ], "Content-Length": [ - "395" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -801,26 +645,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile391\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile2978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5NDgwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUyOTc4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "33bc9645-d9ee-4bab-934a-2b9134437bf9" + "49bffc9d-8a7c-49e9-8e5b-8a302887a116" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -831,10 +675,10 @@ "no-cache" ], "x-ms-request-id": [ - "926a37f9-f958-4dd9-abed-17c8703ca453" + "12266e80-8b7f-4c1c-bef2-64ad96a34854" ], "x-ms-client-request-id": [ - "33bc9645-d9ee-4bab-934a-2b9134437bf9" + "49bffc9d-8a7c-49e9-8e5b-8a302887a116" ], "OData-Version": [ "4.0" @@ -855,19 +699,19 @@ "47" ], "x-ms-correlation-request-id": [ - "03b1622f-f321-46eb-92a8-533f094dbe3f" + "d624c6df-1f07-4448-9cb1-8e56ec8e6545" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T230248Z:03b1622f-f321-46eb-92a8-533f094dbe3f" + "WESTUS:20201028T235459Z:d624c6df-1f07-4448-9cb1-8e56ec8e6545" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:02:48 GMT" + "Wed, 28 Oct 2020 23:54:58 GMT" ], "Content-Length": [ - "395" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -876,1437 +720,16 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile391\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "PUT", - "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", - "RequestHeaders": { - "x-ms-client-request-id": [ - "50f52de2-154f-410c-960b-228d74e2f8b7" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "28" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" - ], - "x-ms-request-id": [ - "0c12cb7c-f893-4ca3-89eb-7cf13ec3e301" - ], - "x-ms-correlation-request-id": [ - "0c12cb7c-f893-4ca3-89eb-7cf13ec3e301" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230250Z:0c12cb7c-f893-4ca3-89eb-7cf13ec3e301" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:02:50 GMT" - ], - "Content-Length": [ - "193" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7468\",\r\n \"name\": \"cdnResourceGroup7468\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", - "StatusCode": 201 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMzM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "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": { - "x-ms-client-request-id": [ - "c1cb0236-90bb-4f62-b76a-c5f906003a60" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ], - "Content-Type": [ - "application/json; charset=utf-8" - ], - "Content-Length": [ - "142" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "5d773774-6f4e-4e2d-b9b1-0a27483c94fe" - ], - "x-ms-client-request-id": [ - "c1cb0236-90bb-4f62-b76a-c5f906003a60" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/097dc736-151b-46bd-aa65-e9285754b1ca?api-version=2020-04-15" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "23" - ], - "x-ms-correlation-request-id": [ - "18b11df4-0efd-42f6-a7aa-b21d532015f8" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230253Z:18b11df4-0efd-42f6-a7aa-b21d532015f8" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:02:53 GMT" - ], - "Content-Length": [ - "398" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile1338\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/097dc736-151b-46bd-aa65-e9285754b1ca?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDk3ZGM3MzYtMTUxYi00NmJkLWFhNjUtZTkyODU3NTRiMWNhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "7d6f49de-52a3-420e-a8ad-5a240171af31" - ], - "x-ms-client-request-id": [ - "dc4d5eaa-807f-4e78-ae2e-5cf93c686987" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-correlation-request-id": [ - "4bf409a5-1118-4e6c-9750-0f9b42537bb0" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230304Z:4bf409a5-1118-4e6c-9750-0f9b42537bb0" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:03 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/097dc736-151b-46bd-aa65-e9285754b1ca?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDk3ZGM3MzYtMTUxYi00NmJkLWFhNjUtZTkyODU3NTRiMWNhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "1883e808-f9be-4058-8241-0aa0c32b3e26" - ], - "x-ms-client-request-id": [ - "b4cfbfc7-a4e0-44a2-a73e-dcfe92ee24c3" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-correlation-request-id": [ - "b2ce9e07-569f-4f3d-b4a1-f322b39d6bda" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230314Z:b2ce9e07-569f-4f3d-b4a1-f322b39d6bda" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:13 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/097dc736-151b-46bd-aa65-e9285754b1ca?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMDk3ZGM3MzYtMTUxYi00NmJkLWFhNjUtZTkyODU3NTRiMWNhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "351f328e-5de4-4c13-94c7-24f71c575129" - ], - "x-ms-client-request-id": [ - "5d857860-ab83-4d4c-9354-dfa59111d580" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-correlation-request-id": [ - "2a987bfd-52a0-4028-bfbe-5279028cd5c2" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230324Z:2a987bfd-52a0-4028-bfbe-5279028cd5c2" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:23 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMzM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c8015dc1-93e1-44cc-bb44-bf36f3228c54" - ], - "x-ms-client-request-id": [ - "5392b42a-77c3-4e2d-a1cd-5b70d532ee1d" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "45" - ], - "x-ms-correlation-request-id": [ - "3b12aa8d-9a5f-46f7-8b89-cd2eb5e0f491" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230325Z:3b12aa8d-9a5f-46f7-8b89-cd2eb5e0f491" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:24 GMT" - ], - "Content-Length": [ - "397" - ], - "Content-Type": [ - "application/json; odata.metadata=minimal; odata.streaming=true" - ], - "Expires": [ - "-1" - ] - }, - "ResponseBody": "{\r\n \"name\": \"profile1338\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1984/providers/Microsoft.Cdn/profiles/profile391?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUzOTE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c90aa824-1df7-40c6-94cd-ab0735895414" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/61136c0c-013d-436a-aedf-ff716655441c/profileresults/profile391?api-version=2020-04-15" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73b529a6-8cd2-4a3e-b54c-5eee4aa85567" - ], - "x-ms-client-request-id": [ - "c90aa824-1df7-40c6-94cd-ab0735895414" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/61136c0c-013d-436a-aedf-ff716655441c?api-version=2020-04-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-correlation-request-id": [ - "c3a3d5ae-f347-4544-bf69-1a59aaee3d5d" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230328Z:c3a3d5ae-f347-4544-bf69-1a59aaee3d5d" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/61136c0c-013d-436a-aedf-ff716655441c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjExMzZjMGMtMDEzZC00MzZhLWFlZGYtZmY3MTY2NTU0NDFjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "c42afe45-9225-4181-ae56-31636a79d89e" - ], - "x-ms-client-request-id": [ - "87712736-d1bf-4165-845e-2131e5d87467" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-correlation-request-id": [ - "e31c762f-7f2c-42d9-a5be-93baecdf35c6" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230339Z:e31c762f-7f2c-42d9-a5be-93baecdf35c6" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:38 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984/providers/Microsoft.Cdn/operationresults/61136c0c-013d-436a-aedf-ff716655441c/profileresults/profile391?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjExMzZjMGMtMDEzZC00MzZhLWFlZGYtZmY3MTY2NTU0NDFjL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUzOTE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "5f311f3f-af4a-496d-9126-b6771230f3c5" - ], - "x-ms-client-request-id": [ - "3f639394-a188-420e-a8ec-f8c5e5b5e370" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-correlation-request-id": [ - "e27b5f42-2b70-481c-9c3b-2191947c13b9" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230339Z:e27b5f42-2b70-481c-9c3b-2191947c13b9" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:38 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7468/providers/Microsoft.Cdn/profiles/profile1338?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxMzM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "c5570d61-d67e-4e54-bb66-1230b814f6c2" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/42b83dc1-8f9f-4a0b-b29b-82f500361a69/profileresults/profile1338?api-version=2020-04-15" - ], - "Retry-After": [ - "10" - ], - "x-ms-request-id": [ - "73152438-7e10-4ceb-96b3-ceb080fe3691" - ], - "x-ms-client-request-id": [ - "c5570d61-d67e-4e54-bb66-1230b814f6c2" - ], - "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/42b83dc1-8f9f-4a0b-b29b-82f500361a69?api-version=2020-04-15" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-correlation-request-id": [ - "d290426e-5524-41cd-a898-08b326ffd2fa" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230343Z:d290426e-5524-41cd-a898-08b326ffd2fa" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/42b83dc1-8f9f-4a0b-b29b-82f500361a69?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDJiODNkYzEtOGY5Zi00YTBiLWIyOWItODJmNTAwMzYxYTY5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "2ce9d58f-3381-4abd-aea6-14d134ab4e97" - ], - "x-ms-client-request-id": [ - "47e5c1f5-b6c7-4c84-b739-3db8fa93f551" - ], - "OData-Version": [ - "4.0" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" - ], - "x-ms-correlation-request-id": [ - "9015e55e-e7f1-4398-92bc-a1cb5461dc22" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230353Z:9015e55e-e7f1-4398-92bc-a1cb5461dc22" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:53 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468/providers/Microsoft.Cdn/operationresults/42b83dc1-8f9f-4a0b-b29b-82f500361a69/profileresults/profile1338?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDJiODNkYzEtOGY5Zi00YTBiLWIyOWItODJmNTAwMzYxYTY5L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxMzM4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-request-id": [ - "77dc26d9-5d34-4f96-9c5d-0801f89bb73a" - ], - "x-ms-client-request-id": [ - "093c64a2-5fea-404b-b502-0afbd212de20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "Server": [ - "Microsoft-IIS/10.0" - ], - "X-AspNet-Version": [ - "4.0.30319" - ], - "X-Powered-By": [ - "ASP.NET" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" - ], - "x-ms-correlation-request-id": [ - "f7bcb0b4-896e-4d45-8a3e-1e1a487e9bda" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230354Z:f7bcb0b4-896e-4d45-8a3e-1e1a487e9bda" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:54 GMT" - ], - "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1984?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxOTg0P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "8907b4ba-7dff-4e54-8eb8-40c826c38a0f" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14999" - ], - "x-ms-request-id": [ - "8f2d177b-92fc-4ce7-b659-8767f29da888" - ], - "x-ms-correlation-request-id": [ - "8f2d177b-92fc-4ce7-b659-8767f29da888" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230356Z:8f2d177b-92fc-4ce7-b659-8767f29da888" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:03:56 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" - ], - "x-ms-request-id": [ - "3ea76a70-dde7-4eba-8ed7-5601cadcc004" - ], - "x-ms-correlation-request-id": [ - "3ea76a70-dde7-4eba-8ed7-5601cadcc004" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230412Z:3ea76a70-dde7-4eba-8ed7-5601cadcc004" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:11 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" - ], - "x-ms-request-id": [ - "71169d5d-246b-4427-8957-448a04819942" - ], - "x-ms-correlation-request-id": [ - "71169d5d-246b-4427-8957-448a04819942" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230427Z:71169d5d-246b-4427-8957-448a04819942" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:26 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" - ], - "x-ms-request-id": [ - "199ecf0a-426b-43a0-9e96-5953b936ca20" - ], - "x-ms-correlation-request-id": [ - "199ecf0a-426b-43a0-9e96-5953b936ca20" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230442Z:199ecf0a-426b-43a0-9e96-5953b936ca20" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTk4NC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVGs0TkMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" - ], - "x-ms-request-id": [ - "ed16d1c1-8e55-4514-8133-40b6e5890e01" - ], - "x-ms-correlation-request-id": [ - "ed16d1c1-8e55-4514-8133-40b6e5890e01" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230442Z:ed16d1c1-8e55-4514-8133-40b6e5890e01" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7468?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NDY4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", - "RequestMethod": "DELETE", - "RequestBody": "", - "RequestHeaders": { - "x-ms-client-request-id": [ - "a253d839-d52a-4644-b2db-4342a2ceb757" - ], - "Accept-Language": [ - "en-US" - ], - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-deletes": [ - "14998" - ], - "x-ms-request-id": [ - "d3685c06-54ad-4e72-b44d-4f98c4b06f48" - ], - "x-ms-correlation-request-id": [ - "d3685c06-54ad-4e72-b44d-4f98c4b06f48" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230442Z:d3685c06-54ad-4e72-b44d-4f98c4b06f48" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:42 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelEyT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" - ], - "x-ms-request-id": [ - "9975c522-3497-480b-966a-aecb4c472740" - ], - "x-ms-correlation-request-id": [ - "9975c522-3497-480b-966a-aecb4c472740" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230457Z:9975c522-3497-480b-966a-aecb4c472740" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:04:57 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelEyT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" - ], - "Retry-After": [ - "15" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" - ], - "x-ms-request-id": [ - "46447a46-3309-4beb-ad5e-fd4d2beff092" - ], - "x-ms-correlation-request-id": [ - "46447a46-3309-4beb-ad5e-fd4d2beff092" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230512Z:46447a46-3309-4beb-ad5e-fd4d2beff092" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:05:12 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 202 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelEyT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" - ], - "x-ms-request-id": [ - "ff5ff8d2-1851-42fb-9e9e-059ba775ad19" - ], - "x-ms-correlation-request-id": [ - "ff5ff8d2-1851-42fb-9e9e-059ba775ad19" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230527Z:ff5ff8d2-1851-42fb-9e9e-059ba775ad19" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:05:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", - "StatusCode": 200 - }, - { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzQ2OC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelEyT0MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", - "RequestMethod": "GET", - "RequestBody": "", - "RequestHeaders": { - "User-Agent": [ - "FxVersion/4.6.29017.01", - "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" - ] - }, - "ResponseHeaders": { - "Cache-Control": [ - "no-cache" - ], - "Pragma": [ - "no-cache" - ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" - ], - "x-ms-request-id": [ - "dc66e7f9-706f-4fdb-bdbd-c1612a628ba5" - ], - "x-ms-correlation-request-id": [ - "dc66e7f9-706f-4fdb-bdbd-c1612a628ba5" - ], - "x-ms-routing-request-id": [ - "WESTUS:20200810T230527Z:dc66e7f9-706f-4fdb-bdbd-c1612a628ba5" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Date": [ - "Mon, 10 Aug 2020 23:05:27 GMT" - ], - "Expires": [ - "-1" - ], - "Content-Length": [ - "0" - ] - }, - "ResponseBody": "", + "ResponseBody": "{\r\n \"name\": \"profile2978\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9480/providers/Microsoft.Cdn/profiles/profile2978\",\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 } ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup1984", - "cdnResourceGroup7468" + "cdnResourceGroup9480" ], "ProfileListBySubcriptionTest": [ - "profile391", - "profile1338" + "profile2978" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileUpdateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileUpdateTest.json index 6ba0db5a108b5..5889934dbcd06 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileUpdateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ProfileTests/ProfileUpdateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "68935ee5-51c7-4347-95f5-88cfa88af329" + "054a8bc1-80a0-4997-905d-b0f5983db7f8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "331c01a0-686a-4d6b-a4e8-dfdf710d9687" + "a60d0669-32ef-4c6d-b958-21f38e6439c1" ], "x-ms-correlation-request-id": [ - "331c01a0-686a-4d6b-a4e8-dfdf710d9687" + "a60d0669-32ef-4c6d-b958-21f38e6439c1" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232036Z:331c01a0-686a-4d6b-a4e8-dfdf710d9687" + "WESTUS:20201027T025423Z:a60d0669-32ef-4c6d-b958-21f38e6439c1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:35 GMT" + "Tue, 27 Oct 2020 02:54:23 GMT" ], "Content-Length": [ - "191" + "193" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269\",\r\n \"name\": \"cdnResourceGroup269\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595\",\r\n \"name\": \"cdnResourceGroup4595\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTgwOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Akamai\"\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {\r\n \"key1\": \"value1\",\r\n \"key2\": \"value2\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "895cd762-8573-4d5c-bbfe-407954ed0b27" + "c8e55b93-fdc5-4106-b135-c76122026a46" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "fac442be-6278-4752-9364-714bec0ad87a" + "bc13438f-6938-4158-b465-b748b9648aab" ], "x-ms-client-request-id": [ - "895cd762-8573-4d5c-bbfe-407954ed0b27" + "c8e55b93-fdc5-4106-b135-c76122026a46" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/0cc61578-1d91-4e04-bfb8-62702d16f000?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/a4300c47-9876-4a14-ba23-cc40aad5a2bd?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,19 +129,19 @@ "24" ], "x-ms-correlation-request-id": [ - "3c4a46aa-8ed4-4f39-ab53-1169468f6287" + "4a2b72ae-eea0-4a6d-833e-8c730cacd73f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232042Z:3c4a46aa-8ed4-4f39-ab53-1169468f6287" + "WESTUS:20201027T025430Z:4a2b72ae-eea0-4a6d-833e-8c730cacd73f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:42 GMT" + "Tue, 27 Oct 2020 02:54:29 GMT" ], "Content-Length": [ - "396" + "397" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -150,20 +150,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile8093\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile6230\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/0cc61578-1d91-4e04-bfb8-62702d16f000?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy8wY2M2MTU3OC0xZDkxLTRlMDQtYmZiOC02MjcwMmQxNmYwMDA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/a4300c47-9876-4a14-ba23-cc40aad5a2bd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYTQzMDBjNDctOTg3Ni00YTE0LWJhMjMtY2M0MGFhZDVhMmJkP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "2575dca8-68df-47e6-b155-8d75429e2644" + "bf4af5d5-8e46-4135-831c-eafd639a75f7" ], "x-ms-client-request-id": [ - "b0e097a0-fbee-4a99-9c01-e9b3fc572b31" + "3817a087-09ab-47b3-913a-3634bed3cf43" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "cee9e48c-b2b8-4468-9a48-53025f437768" + "50229a27-3ec5-4cff-91c8-d5d1d134aa7f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232052Z:cee9e48c-b2b8-4468-9a48-53025f437768" + "WESTUS:20201027T025440Z:50229a27-3ec5-4cff-91c8-d5d1d134aa7f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:52 GMT" + "Tue, 27 Oct 2020 02:54:39 GMT" ], "Content-Length": [ "77" @@ -223,16 +223,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTgwOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "6f0ecf0e-b1f8-4674-9150-aad0ceb702b0" + "670434ff-2071-4050-8f31-6ae05f032db4" ], "x-ms-client-request-id": [ - "408ebf44-52a7-482d-919a-a7d1b890f449" + "836e3438-dc5e-42b3-9f45-dc9691c04616" ], "OData-Version": [ "4.0" @@ -267,19 +267,19 @@ "49" ], "x-ms-correlation-request-id": [ - "3f995280-7b68-431a-8b44-c416473165f7" + "ad7dffc6-e333-486e-9c2c-ee1f1d606946" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232053Z:3f995280-7b68-431a-8b44-c416473165f7" + "WESTUS:20201027T025441Z:ad7dffc6-e333-486e-9c2c-ee1f1d606946" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:53 GMT" + "Tue, 27 Oct 2020 02:54:40 GMT" ], "Content-Length": [ - "395" + "396" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -288,20 +288,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile8093\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"profile6230\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230\",\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_Akamai\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTgwOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -312,10 +312,10 @@ "no-cache" ], "x-ms-request-id": [ - "28f42846-9427-4c62-8ce3-d82107a56842" + "f52477c2-a6f4-4fed-ab0b-e0665b46ab57" ], "x-ms-client-request-id": [ - "f68e041e-b377-41d5-a32b-460aa0830784" + "2c3ba20d-7e65-4262-87c1-b294ca77428d" ], "OData-Version": [ "4.0" @@ -336,19 +336,19 @@ "48" ], "x-ms-correlation-request-id": [ - "864c8a8c-cb46-47aa-adc1-119e8f88f78d" + "f92c6f41-79cf-45e1-b784-b750b6db25b9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232106Z:864c8a8c-cb46-47aa-adc1-119e8f88f78d" + "WESTUS:20201027T025454Z:f92c6f41-79cf-45e1-b784-b750b6db25b9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:21:06 GMT" + "Tue, 27 Oct 2020 02:54:53 GMT" ], "Content-Length": [ - "385" + "386" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -357,26 +357,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile8093\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"newkey1\": \"newValue1\"\r\n },\r\n \"location\": \"WestUs\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6230\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"newkey1\": \"newValue1\"\r\n },\r\n \"location\": \"WestUs\",\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}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTgwOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MjMwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"newkey1\": \"newValue1\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "7bd61da5-70e7-4612-badd-ad38f52d0119" + "06bc5bce-bd38-4bb7-91c0-87cb82ec9224" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -393,19 +393,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/fc27fac5-a1f0-482c-8fe7-75e5a4f48b22/profileresults/profile8093?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/9971c0d1-a711-4149-9ca3-bf34a3b47562/profileresults/profile6230?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "e13cf131-70ce-4f2b-bc80-32af37106bc7" + "35210876-2882-46d2-9fb6-8cb1d09cf44e" ], "x-ms-client-request-id": [ - "7bd61da5-70e7-4612-badd-ad38f52d0119" + "06bc5bce-bd38-4bb7-91c0-87cb82ec9224" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/fc27fac5-a1f0-482c-8fe7-75e5a4f48b22?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/9971c0d1-a711-4149-9ca3-bf34a3b47562?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -426,19 +426,19 @@ "23" ], "x-ms-correlation-request-id": [ - "ff4b3fe6-bf38-43cc-9652-19101ccf03d0" + "12fa0c10-c42e-44f1-abc6-9ef5beba3206" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232055Z:ff4b3fe6-bf38-43cc-9652-19101ccf03d0" + "WESTUS:20201027T025443Z:12fa0c10-c42e-44f1-abc6-9ef5beba3206" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:20:55 GMT" + "Tue, 27 Oct 2020 02:54:42 GMT" ], "Content-Length": [ - "385" + "386" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -447,20 +447,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile8093\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile8093\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"newkey1\": \"newValue1\"\r\n },\r\n \"location\": \"WestUs\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6230\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6230\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"newkey1\": \"newValue1\"\r\n },\r\n \"location\": \"WestUs\",\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}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/fc27fac5-a1f0-482c-8fe7-75e5a4f48b22?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9mYzI3ZmFjNS1hMWYwLTQ4MmMtOGZlNy03NWU1YTRmNDhiMjI/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/9971c0d1-a711-4149-9ca3-bf34a3b47562?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOTk3MWMwZDEtYTcxMS00MTQ5LTljYTMtYmYzNGEzYjQ3NTYyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -471,10 +471,10 @@ "no-cache" ], "x-ms-request-id": [ - "d86d2ce1-9f20-4c74-8827-69dcefcb5e37" + "d9572a1d-6a41-4ae0-9ed2-0e10f50d5658" ], "x-ms-client-request-id": [ - "bdd910c3-0c34-4bae-96fa-5ef299ca1890" + "3762f1b3-4446-4eda-9a8e-9ec7bd5c3ea2" ], "OData-Version": [ "4.0" @@ -495,16 +495,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "42b53036-dff8-429c-a7fc-11ea56493df5" + "41d15bcd-55ef-431c-96c8-f2d70658cbdc" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232105Z:42b53036-dff8-429c-a7fc-11ea56493df5" + "WESTUS:20201027T025453Z:41d15bcd-55ef-431c-96c8-f2d70658cbdc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:21:05 GMT" + "Tue, 27 Oct 2020 02:54:53 GMT" ], "Content-Length": [ "77" @@ -520,22 +520,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTQyOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "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": { "x-ms-client-request-id": [ - "bbde7edf-571b-432d-b554-2c1fb1d3bf20" + "a4b47382-1049-49d9-aae9-cc861a3aca7e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -555,13 +555,13 @@ "10" ], "x-ms-request-id": [ - "1fceb03e-eccb-4b65-b206-5e4912054694" + "9e526ee2-d9bb-4afa-9b96-16ee9273d9e2" ], "x-ms-client-request-id": [ - "bbde7edf-571b-432d-b554-2c1fb1d3bf20" + "a4b47382-1049-49d9-aae9-cc861a3aca7e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/e2e4257e-b19c-43cf-b96e-26e41a567dd3?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/1b52ce37-7ebe-4549-8104-6269f89a43ae?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -582,19 +582,19 @@ "22" ], "x-ms-correlation-request-id": [ - "69a4f7c8-6477-4bd0-9a46-e8c7caa73a53" + "013120bd-9edb-44d6-b63e-9972cc67140c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232112Z:69a4f7c8-6477-4bd0-9a46-e8c7caa73a53" + "WESTUS:20201027T025500Z:013120bd-9edb-44d6-b63e-9972cc67140c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:21:11 GMT" + "Tue, 27 Oct 2020 02:54:59 GMT" ], "Content-Length": [ - "397" + "398" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -603,26 +603,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4293\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile6347\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTQyOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "47ee23b5-c894-419c-8322-cf7461558308" + "bed20e0b-3484-4cc3-b697-b2cfec603231" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -639,10 +639,10 @@ "no-cache" ], "x-ms-request-id": [ - "ec6c117e-4098-4858-b952-c65f44d56dbf" + "cb2c343d-c2a5-4a5a-a9c5-f9d9d14f71e2" ], "x-ms-client-request-id": [ - "47ee23b5-c894-419c-8322-cf7461558308" + "bed20e0b-3484-4cc3-b697-b2cfec603231" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -660,16 +660,16 @@ "21" ], "x-ms-correlation-request-id": [ - "adda6908-07bb-47dc-bd0f-27ace314bc36" + "8136d10a-80ec-42da-aed8-c07362fe8401" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232113Z:adda6908-07bb-47dc-bd0f-27ace314bc36" + "WESTUS:20201027T025501Z:8136d10a-80ec-42da-aed8-c07362fe8401" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:21:13 GMT" + "Tue, 27 Oct 2020 02:55:00 GMT" ], "Content-Length": [ "160" @@ -688,22 +688,22 @@ "StatusCode": 409 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTQyOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"tags\": {\r\n \"key\": \"value\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "612505b4-26e6-48f4-a9be-ca8c06da6387" + "82aa4ebd-7717-47a0-bbe9-793c6b11127e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -720,19 +720,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/1a17eff6-4d9d-4cf6-8c03-10cfacf1c873/profileresults/profile4293?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92/profileresults/profile6347?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "5413a78b-b091-48da-9256-23d5fdb10660" + "cd517c87-e8a3-4d7b-9bda-6139fc70fb48" ], "x-ms-client-request-id": [ - "612505b4-26e6-48f4-a9be-ca8c06da6387" + "82aa4ebd-7717-47a0-bbe9-793c6b11127e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/1a17eff6-4d9d-4cf6-8c03-10cfacf1c873?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -753,19 +753,19 @@ "24" ], "x-ms-correlation-request-id": [ - "192761f1-c62f-43d0-ba77-e5c126a8f36f" + "f7f43f83-8285-4951-aa7e-a5f5f80be08f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232318Z:192761f1-c62f-43d0-ba77-e5c126a8f36f" + "WESTUS:20201027T025706Z:f7f43f83-8285-4951-aa7e-a5f5f80be08f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:23:18 GMT" + "Tue, 27 Oct 2020 02:57:06 GMT" ], "Content-Length": [ - "378" + "379" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -774,20 +774,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4293\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key\": \"value\"\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}", + "ResponseBody": "{\r\n \"name\": \"profile6347\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key\": \"value\"\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": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/operationresults/1a17eff6-4d9d-4cf6-8c03-10cfacf1c873?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy8xYTE3ZWZmNi00ZDlkLTRjZjYtOGMwMy0xMGNmYWNmMWM4NzM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTlmNjcwODUtMDcwMy00OGM5LWI5OWYtYTgxZWI2ZmE5ZjkyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -798,10 +798,10 @@ "no-cache" ], "x-ms-request-id": [ - "b46c1b35-3e0e-47e7-b90f-8aae003ae7b3" + "a7edd257-d0b4-4d9a-8703-4e7d9e4c3c0a" ], "x-ms-client-request-id": [ - "be11b624-c3a5-485b-ad7e-5546b1716fbc" + "adb55ebe-734c-4005-ba49-568d6caac452" ], "OData-Version": [ "4.0" @@ -822,16 +822,223 @@ "11999" ], "x-ms-correlation-request-id": [ - "62691272-920a-4ef5-820b-3ef1e311135f" + "d59fc053-5c53-46cb-bd9f-9af5cf46d7f8" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T025716Z:d59fc053-5c53-46cb-bd9f-9af5cf46d7f8" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:57:16 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTlmNjcwODUtMDcwMy00OGM5LWI5OWYtYTgxZWI2ZmE5ZjkyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "23cd1baa-cade-47c2-a22c-c7eee2354c03" + ], + "x-ms-client-request-id": [ + "0c23db81-407e-421f-9905-fdd92c542d73" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11998" + ], + "x-ms-correlation-request-id": [ + "332a2f24-db99-4a1f-a035-a31f68e28fca" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232329Z:62691272-920a-4ef5-820b-3ef1e311135f" + "WESTUS:20201027T025726Z:332a2f24-db99-4a1f-a035-a31f68e28fca" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:23:28 GMT" + "Tue, 27 Oct 2020 02:57:26 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTlmNjcwODUtMDcwMy00OGM5LWI5OWYtYTgxZWI2ZmE5ZjkyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8ca8bb4a-a883-4472-a065-be3df8e00d2f" + ], + "x-ms-client-request-id": [ + "7cd0a6cb-30cd-4541-b0e2-c2a67240509b" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11997" + ], + "x-ms-correlation-request-id": [ + "b2f55b98-0c73-41ba-b445-a3a51dc16246" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T025737Z:b2f55b98-0c73-41ba-b445-a3a51dc16246" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:57:36 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/operationresults/19f67085-0703-48c9-b99f-a81eb6fa9f92?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMTlmNjcwODUtMDcwMy00OGM5LWI5OWYtYTgxZWI2ZmE5ZjkyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "8fbe6255-97d3-450d-bd86-00d62a027f3b" + ], + "x-ms-client-request-id": [ + "d3cc4c85-1e7d-4406-8208-18430a8784c9" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11996" + ], + "x-ms-correlation-request-id": [ + "0b081d3b-f664-4255-9edd-4507d635d49d" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T025747Z:0b081d3b-f664-4255-9edd-4507d635d49d" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 02:57:47 GMT" ], "Content-Length": [ "77" @@ -847,16 +1054,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjkvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTQyOTM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU2MzQ3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -867,10 +1074,10 @@ "no-cache" ], "x-ms-request-id": [ - "5f0f8940-028d-4763-8ca2-a475ab0fbff0" + "e2aa9479-0292-41cf-b2fb-6c231bccacfc" ], "x-ms-client-request-id": [ - "a45daa2f-43fc-497f-8927-27f0bb666910" + "b8084a06-1661-49d7-a6c3-3d0f8c1ad6a3" ], "OData-Version": [ "4.0" @@ -891,19 +1098,19 @@ "49" ], "x-ms-correlation-request-id": [ - "ebb05ab5-8115-4b5a-9e21-6907ccae8366" + "d222b5e3-7654-4cb6-9f2e-f670bcde40ab" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232330Z:ebb05ab5-8115-4b5a-9e21-6907ccae8366" + "WESTUS:20201027T025748Z:d222b5e3-7654-4cb6-9f2e-f670bcde40ab" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:23:29 GMT" + "Tue, 27 Oct 2020 02:57:48 GMT" ], "Content-Length": [ - "378" + "379" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -912,25 +1119,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile4293\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269/providers/Microsoft.Cdn/profiles/profile4293\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key\": \"value\"\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}", + "ResponseBody": "{\r\n \"name\": \"profile6347\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595/providers/Microsoft.Cdn/profiles/profile6347\",\r\n \"type\": \"Microsoft.Cdn/profiles\",\r\n \"tags\": {\r\n \"key\": \"value\"\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup269?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup4595?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA0NTk1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "89ad94e4-c2f3-48c1-b820-37ac78ca53e4" + "1bdc62d4-4e5c-414e-9f04-c3f7baf6f13e" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -942,7 +1149,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -951,13 +1158,13 @@ "14999" ], "x-ms-request-id": [ - "6b66be68-33f0-4ba4-8f04-657f41076444" + "af718607-315e-458f-a58a-7207b43f77be" ], "x-ms-correlation-request-id": [ - "6b66be68-33f0-4ba4-8f04-657f41076444" + "af718607-315e-458f-a58a-7207b43f77be" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232330Z:6b66be68-33f0-4ba4-8f04-657f41076444" + "WESTUS:20201027T025749Z:af718607-315e-458f-a58a-7207b43f77be" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -966,7 +1173,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:23:29 GMT" + "Tue, 27 Oct 2020 02:57:48 GMT" ], "Expires": [ "-1" @@ -979,15 +1186,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -999,22 +1206,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11999" ], "x-ms-request-id": [ - "11160209-c9f4-4d2f-98a7-044ecbe3744b" + "2f9cff8f-c176-4a60-bf8f-e6bee581a551" ], "x-ms-correlation-request-id": [ - "11160209-c9f4-4d2f-98a7-044ecbe3744b" + "2f9cff8f-c176-4a60-bf8f-e6bee581a551" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232345Z:11160209-c9f4-4d2f-98a7-044ecbe3744b" + "WESTUS:20201027T025804Z:2f9cff8f-c176-4a60-bf8f-e6bee581a551" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1023,7 +1230,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:23:45 GMT" + "Tue, 27 Oct 2020 02:58:03 GMT" ], "Expires": [ "-1" @@ -1036,15 +1243,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1056,22 +1263,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11998" ], "x-ms-request-id": [ - "24399ac3-da38-4351-8404-924ff279cdf4" + "1ed9156b-b6a6-41de-bf46-c7cd76dd968d" ], "x-ms-correlation-request-id": [ - "24399ac3-da38-4351-8404-924ff279cdf4" + "1ed9156b-b6a6-41de-bf46-c7cd76dd968d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232400Z:24399ac3-da38-4351-8404-924ff279cdf4" + "WESTUS:20201027T025819Z:1ed9156b-b6a6-41de-bf46-c7cd76dd968d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1080,7 +1287,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:24:00 GMT" + "Tue, 27 Oct 2020 02:58:18 GMT" ], "Expires": [ "-1" @@ -1093,15 +1300,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1113,22 +1320,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11997" ], "x-ms-request-id": [ - "a09f4fbc-b69b-421b-a306-715d89a77823" + "d764511d-6143-4c5a-9efa-b62ef124b79d" ], "x-ms-correlation-request-id": [ - "a09f4fbc-b69b-421b-a306-715d89a77823" + "d764511d-6143-4c5a-9efa-b62ef124b79d" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232415Z:a09f4fbc-b69b-421b-a306-715d89a77823" + "WESTUS:20201027T025834Z:d764511d-6143-4c5a-9efa-b62ef124b79d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1137,7 +1344,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:24:15 GMT" + "Tue, 27 Oct 2020 02:58:33 GMT" ], "Expires": [ "-1" @@ -1150,15 +1357,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1170,22 +1377,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11996" ], "x-ms-request-id": [ - "c3787c0e-a962-453a-a232-cdfb62fa8efa" + "ef751f15-872f-4074-addb-c5546c8a10b7" ], "x-ms-correlation-request-id": [ - "c3787c0e-a962-453a-a232-cdfb62fa8efa" + "ef751f15-872f-4074-addb-c5546c8a10b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232430Z:c3787c0e-a962-453a-a232-cdfb62fa8efa" + "WESTUS:20201027T025849Z:ef751f15-872f-4074-addb-c5546c8a10b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1194,7 +1401,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:24:30 GMT" + "Tue, 27 Oct 2020 02:58:48 GMT" ], "Expires": [ "-1" @@ -1207,15 +1414,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1227,22 +1434,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "11995" ], "x-ms-request-id": [ - "8e8f662f-8ea8-4dfb-9215-4d6c8c0d6893" + "37b899c3-1206-49f1-8f99-bad68bee049f" ], "x-ms-correlation-request-id": [ - "8e8f662f-8ea8-4dfb-9215-4d6c8c0d6893" + "37b899c3-1206-49f1-8f99-bad68bee049f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232445Z:8e8f662f-8ea8-4dfb-9215-4d6c8c0d6893" + "WESTUS:20201027T025904Z:37b899c3-1206-49f1-8f99-bad68bee049f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1251,7 +1458,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:24:45 GMT" + "Tue, 27 Oct 2020 02:59:03 GMT" ], "Expires": [ "-1" @@ -1264,15 +1471,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1284,22 +1491,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11994" ], "x-ms-request-id": [ - "ef6efd3c-b10f-4448-9127-90660537835f" + "f5749506-02a6-47a6-ad99-7932a7029419" ], "x-ms-correlation-request-id": [ - "ef6efd3c-b10f-4448-9127-90660537835f" + "f5749506-02a6-47a6-ad99-7932a7029419" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232501Z:ef6efd3c-b10f-4448-9127-90660537835f" + "WESTUS:20201027T025919Z:f5749506-02a6-47a6-ad99-7932a7029419" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1308,7 +1515,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:25:00 GMT" + "Tue, 27 Oct 2020 02:59:18 GMT" ], "Expires": [ "-1" @@ -1321,15 +1528,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1341,22 +1548,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11989" + "11993" ], "x-ms-request-id": [ - "5ef037ba-16a8-492d-bc0f-4f948d251b4d" + "921575f7-873c-4ac0-9e64-0f3bce09fcb9" ], "x-ms-correlation-request-id": [ - "5ef037ba-16a8-492d-bc0f-4f948d251b4d" + "921575f7-873c-4ac0-9e64-0f3bce09fcb9" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232516Z:5ef037ba-16a8-492d-bc0f-4f948d251b4d" + "WESTUS:20201027T025934Z:921575f7-873c-4ac0-9e64-0f3bce09fcb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1365,7 +1572,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:25:15 GMT" + "Tue, 27 Oct 2020 02:59:33 GMT" ], "Expires": [ "-1" @@ -1378,15 +1585,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1398,22 +1605,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11992" ], "x-ms-request-id": [ - "1e6d63ff-edb2-45e0-965d-d69456c80c0d" + "f16fff69-4826-4e73-b933-a14e24a3b32a" ], "x-ms-correlation-request-id": [ - "1e6d63ff-edb2-45e0-965d-d69456c80c0d" + "f16fff69-4826-4e73-b933-a14e24a3b32a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232531Z:1e6d63ff-edb2-45e0-965d-d69456c80c0d" + "WESTUS:20201027T025949Z:f16fff69-4826-4e73-b933-a14e24a3b32a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1422,7 +1629,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:25:30 GMT" + "Tue, 27 Oct 2020 02:59:48 GMT" ], "Expires": [ "-1" @@ -1435,15 +1642,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1455,22 +1662,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11991" ], "x-ms-request-id": [ - "b38ffe14-fd98-4691-9b52-0d8f38b4e638" + "6feedb58-849f-4dc4-8df5-e5517328778a" ], "x-ms-correlation-request-id": [ - "b38ffe14-fd98-4691-9b52-0d8f38b4e638" + "6feedb58-849f-4dc4-8df5-e5517328778a" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232546Z:b38ffe14-fd98-4691-9b52-0d8f38b4e638" + "WESTUS:20201027T030004Z:6feedb58-849f-4dc4-8df5-e5517328778a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1479,7 +1686,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:25:45 GMT" + "Tue, 27 Oct 2020 03:00:04 GMT" ], "Expires": [ "-1" @@ -1492,15 +1699,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1512,22 +1719,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11986" + "11990" ], "x-ms-request-id": [ - "25e60273-532e-42c0-b099-994a9feaa1dc" + "0d68de28-9050-4e96-a230-92cc0d5b2415" ], "x-ms-correlation-request-id": [ - "25e60273-532e-42c0-b099-994a9feaa1dc" + "0d68de28-9050-4e96-a230-92cc0d5b2415" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232601Z:25e60273-532e-42c0-b099-994a9feaa1dc" + "WESTUS:20201027T030019Z:0d68de28-9050-4e96-a230-92cc0d5b2415" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1536,7 +1743,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:01 GMT" + "Tue, 27 Oct 2020 03:00:19 GMT" ], "Expires": [ "-1" @@ -1549,15 +1756,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1569,16 +1776,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11985" + "11989" ], "x-ms-request-id": [ - "8ea8124a-bf9c-422e-93c1-16d72f086ca1" + "dfc8f135-3d06-4e2b-9922-e5cab472966c" ], "x-ms-correlation-request-id": [ - "8ea8124a-bf9c-422e-93c1-16d72f086ca1" + "dfc8f135-3d06-4e2b-9922-e5cab472966c" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232616Z:8ea8124a-bf9c-422e-93c1-16d72f086ca1" + "WESTUS:20201027T030034Z:dfc8f135-3d06-4e2b-9922-e5cab472966c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1587,7 +1794,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:16 GMT" + "Tue, 27 Oct 2020 03:00:34 GMT" ], "Expires": [ "-1" @@ -1600,15 +1807,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjY5LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalk1TFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNDU5NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFORFU1TlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1620,16 +1827,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11984" + "11988" ], "x-ms-request-id": [ - "22bf13b2-3675-4e11-a4e7-89773fe7e316" + "bb484b16-ca1b-41c6-a801-fa0fd1b2ad97" ], "x-ms-correlation-request-id": [ - "22bf13b2-3675-4e11-a4e7-89773fe7e316" + "bb484b16-ca1b-41c6-a801-fa0fd1b2ad97" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T232616Z:22bf13b2-3675-4e11-a4e7-89773fe7e316" + "WESTUS:20201027T030034Z:bb484b16-ca1b-41c6-a801-fa0fd1b2ad97" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1638,7 +1845,7 @@ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:26:16 GMT" + "Tue, 27 Oct 2020 03:00:34 GMT" ], "Expires": [ "-1" @@ -1653,11 +1860,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup269" + "cdnResourceGroup4595" ], "ProfileUpdateTest": [ - "profile8093", - "profile4293" + "profile6230", + "profile6347" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ValidateTests/ValidateProbePathTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ValidateTests/ValidateProbePathTest.json index 69940860c98a5..21ac93f3ff838 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ValidateTests/ValidateProbePathTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/ValidateTests/ValidateProbePathTest.json @@ -7,16 +7,16 @@ "RequestBody": "{\r\n \"probeURL\": \"www.withoutHttp.com\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "6246416f-e06a-43bd-9bac-a08c7ff5a7c5" + "76727524-2b48-4985-a4c3-247666e27747" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,10 +33,10 @@ "no-cache" ], "x-ms-request-id": [ - "12dc848a-1302-40ef-acca-b07175e14fb2" + "f0d3d270-0b1b-41af-9f56-afe38f95aabe" ], "x-ms-client-request-id": [ - "6246416f-e06a-43bd-9bac-a08c7ff5a7c5" + "76727524-2b48-4985-a4c3-247666e27747" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -54,16 +54,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "f8d5aed1-ec53-45ab-9e60-795261eca348" + "2b4a92a3-9b5f-4079-8f11-885e263a8223" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233413Z:f8d5aed1-ec53-45ab-9e60-795261eca348" + "WESTUS:20201027T015151Z:2b4a92a3-9b5f-4079-8f11-885e263a8223" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:12 GMT" + "Tue, 27 Oct 2020 01:51:51 GMT" ], "Content-Length": [ "114" @@ -88,16 +88,16 @@ "RequestBody": "{\r\n \"probeURL\": \"https://www.notexist.com/notexist/notexist.txt\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2742619c-4cf7-4d84-8855-806237255627" + "5f7904e1-3295-45f2-b717-54f85c9ed4e0" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -114,10 +114,10 @@ "no-cache" ], "x-ms-request-id": [ - "b20b7147-45e9-4fd0-b1e0-5ed0be49967f" + "c55ce8eb-ceba-45ec-932a-72950aa81a4f" ], "x-ms-client-request-id": [ - "2742619c-4cf7-4d84-8855-806237255627" + "5f7904e1-3295-45f2-b717-54f85c9ed4e0" ], "OData-Version": [ "4.0" @@ -138,16 +138,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "767f25b9-3e70-4384-a580-ffb4cdd700f5" + "33a36a45-2e8f-4319-94bc-cc69d28ecb71" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233415Z:767f25b9-3e70-4384-a580-ffb4cdd700f5" + "WESTUS:20201027T015153Z:33a36a45-2e8f-4319-94bc-cc69d28ecb71" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:14 GMT" + "Tue, 27 Oct 2020 01:51:53 GMT" ], "Content-Length": [ "200" @@ -169,16 +169,16 @@ "RequestBody": "{\r\n \"probeURL\": \"https://azurecdn-files.azureedge.net/dsa-test/probe-v.txt\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "07558f8e-84c5-4e91-a313-0effacced5a6" + "1b76a230-d096-41f8-bf07-20204425ae54" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -195,10 +195,10 @@ "no-cache" ], "x-ms-request-id": [ - "84195d30-5ce0-49db-b4c4-dc548cb33d60" + "f0f4c963-f14d-4367-8dd0-50f314e7c54c" ], "x-ms-client-request-id": [ - "07558f8e-84c5-4e91-a313-0effacced5a6" + "1b76a230-d096-41f8-bf07-20204425ae54" ], "OData-Version": [ "4.0" @@ -219,16 +219,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "82d79b6d-18a1-4e07-a705-c5cfda1bf5f4" + "0394a8e9-1dab-4580-84d2-dd099235bf3f" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233416Z:82d79b6d-18a1-4e07-a705-c5cfda1bf5f4" + "WESTUS:20201027T015154Z:0394a8e9-1dab-4580-84d2-dd099235bf3f" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:15 GMT" + "Tue, 27 Oct 2020 01:51:54 GMT" ], "Content-Length": [ "56" @@ -250,16 +250,16 @@ "RequestBody": "{\r\n \"probeURL\": \"http://999.999.999.999/nonexist.txt\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4e3802b3-6bf7-4291-94dc-da237b4220cb" + "e8274913-2038-44a0-9a54-9c4d16d23bd9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -276,10 +276,10 @@ "no-cache" ], "x-ms-request-id": [ - "d9b52cea-3b8b-4fe8-a6a4-47efbf1a70e3" + "e037e185-4669-4785-9541-0ede268dcc4e" ], "x-ms-client-request-id": [ - "4e3802b3-6bf7-4291-94dc-da237b4220cb" + "e8274913-2038-44a0-9a54-9c4d16d23bd9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -297,16 +297,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "e1555786-b968-4b5d-b86c-f42d172627e3" + "c9bfac98-9c38-4267-a667-38d09debb2d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233417Z:e1555786-b968-4b5d-b86c-f42d172627e3" + "WESTUS:20201027T015155Z:c9bfac98-9c38-4267-a667-38d09debb2d3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:16 GMT" + "Tue, 27 Oct 2020 01:51:55 GMT" ], "Content-Length": [ "114" @@ -331,16 +331,16 @@ "RequestBody": "{\r\n \"probeURL\": \"http://192.168.1.1/nonexist.aspx\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "02e22d75-1d3c-4bc0-bb3a-35ac2000e78c" + "741c9be8-9b15-44b0-b47f-6e06e3c37737" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -357,10 +357,10 @@ "no-cache" ], "x-ms-request-id": [ - "308a28bf-3e9d-4f71-88d9-f9a8d8b3501f" + "b9609320-3958-4460-a1f3-8bb885b97b55" ], "x-ms-client-request-id": [ - "02e22d75-1d3c-4bc0-bb3a-35ac2000e78c" + "741c9be8-9b15-44b0-b47f-6e06e3c37737" ], "OData-Version": [ "4.0" @@ -381,16 +381,16 @@ "1195" ], "x-ms-correlation-request-id": [ - "1deb7bb1-f355-4aab-9bff-cd8ec4763a71" + "15ccb10a-3211-4c45-a94e-adfd601ba327" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233428Z:1deb7bb1-f355-4aab-9bff-cd8ec4763a71" + "WESTUS:20201027T015206Z:15ccb10a-3211-4c45-a94e-adfd601ba327" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:27 GMT" + "Tue, 27 Oct 2020 01:52:06 GMT" ], "Content-Length": [ "200" @@ -412,16 +412,16 @@ "RequestBody": "{\r\n \"probeURL\": \"http://137.117.34.31/contact/contact.aspx\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d5e176ee-f091-4722-8c7a-76b05b6389e6" + "54cc1e75-41dd-479e-9a54-40ab5e97968f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -438,10 +438,10 @@ "no-cache" ], "x-ms-request-id": [ - "c1bce992-8878-4796-aa08-5ae2cd6d0e5f" + "1bf91343-b8e7-4ee0-a1cd-bbdc4f17ef1e" ], "x-ms-client-request-id": [ - "d5e176ee-f091-4722-8c7a-76b05b6389e6" + "54cc1e75-41dd-479e-9a54-40ab5e97968f" ], "OData-Version": [ "4.0" @@ -462,16 +462,16 @@ "1194" ], "x-ms-correlation-request-id": [ - "323abd3b-91f0-47e0-b56c-69dba11cec63" + "2085fece-9052-4891-b898-4c33e72b42ae" ], "x-ms-routing-request-id": [ - "WESTUS:20200810T233429Z:323abd3b-91f0-47e0-b56c-69dba11cec63" + "WESTUS:20201027T015208Z:2085fece-9052-4891-b898-4c33e72b42ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Mon, 10 Aug 2020 23:34:28 GMT" + "Tue, 27 Oct 2020 01:52:07 GMT" ], "Content-Length": [ "56" diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyCreateOrUpdateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyCreateOrUpdateTest.json index 2ce11a8a1a27d..d4c74cba06d4a 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyCreateOrUpdateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyCreateOrUpdateTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3795?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzNzk1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9228?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjI4P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "96df5995-e2c1-4524-99d2-2657c4571f68" + "61dfc467-e2f0-48b9-a6cf-686c9fcefc58" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "acde7f0a-7d0c-4231-b48b-878cee2118a0" + "97079181-2a65-4482-9110-46404bc86717" ], "x-ms-correlation-request-id": [ - "acde7f0a-7d0c-4231-b48b-878cee2118a0" + "97079181-2a65-4482-9110-46404bc86717" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T163137Z:acde7f0a-7d0c-4231-b48b-878cee2118a0" + "WESTUS:20201027T013124Z:97079181-2a65-4482-9110-46404bc86717" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 16:31:37 GMT" + "Tue, 27 Oct 2020 01:31:24 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3795\",\r\n \"name\": \"cdnResourceGroup3795\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9228\",\r\n \"name\": \"cdnResourceGroup9228\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3795/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4017?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzNzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0MDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9228/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy2267?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kyMjY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "30609641-31a9-4a35-b6a3-61146fd7d202" + "8cd917fd-50bd-4167-874e-e674f323b7be" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,10 +99,10 @@ "no-cache" ], "x-ms-request-id": [ - "1bea1924-2835-4adf-a4aa-096c92d54d4a" + "2fb33cec-fbde-4229-ade0-2a7f9d952057" ], "x-ms-client-request-id": [ - "30609641-31a9-4a35-b6a3-61146fd7d202" + "8cd917fd-50bd-4167-874e-e674f323b7be" ], "OData-Version": [ "4.0" @@ -123,16 +123,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "811c748d-1dd5-470c-a9f9-7ea9ac032384" + "834c4df3-78fd-4606-afef-6597bd417d44" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T163148Z:811c748d-1dd5-470c-a9f9-7ea9ac032384" + "WESTUS:20201027T013129Z:834c4df3-78fd-4606-afef-6597bd417d44" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 16:31:48 GMT" + "Tue, 27 Oct 2020 01:31:29 GMT" ], "Content-Length": [ "827" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4017\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3795/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4017\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy2267\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9228/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy2267\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3795/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4017?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzNzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0MDE3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9228/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy2267?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kyMjY3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"rateLimitThreshold\": 3,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"rateLimitThreshold\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "308ea602-e901-469b-99b0-4e8a104270f3" + "04a71117-18e3-4c57-865c-52ab48e8b56c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -180,10 +180,10 @@ "no-cache" ], "x-ms-request-id": [ - "5accb58f-a139-40ea-80e7-a0116109271e" + "fcf81a4c-cf01-426b-9ec0-07b971114774" ], "x-ms-client-request-id": [ - "308ea602-e901-469b-99b0-4e8a104270f3" + "04a71117-18e3-4c57-865c-52ab48e8b56c" ], "OData-Version": [ "4.0" @@ -204,16 +204,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "31683559-4675-464c-af45-95c1b407b7cf" + "defd43bc-2518-409a-820e-1e00efb578d6" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T163150Z:31683559-4675-464c-af45-95c1b407b7cf" + "WESTUS:20201027T013131Z:defd43bc-2518-409a-820e-1e00efb578d6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 16:31:50 GMT" + "Tue, 27 Oct 2020 01:31:31 GMT" ], "Content-Length": [ "2562" @@ -225,26 +225,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4017\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3795/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4017\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy2267\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9228/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy2267\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3795/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8190?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzNzk1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k4MTkwP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup9228/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy7292?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA5MjI4L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k3MjkyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"rateLimitThreshold\": 3,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"rateLimitThreshold\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "cf401ea2-b0d9-4067-b539-8d142d59b27e" + "695e0491-daf2-4576-a86d-fa55a46da45f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -261,10 +261,10 @@ "no-cache" ], "x-ms-request-id": [ - "fa0efe40-64e0-4380-be27-f1e4701d8461" + "612cc9c0-2382-4403-a2d9-886890c61a83" ], "x-ms-client-request-id": [ - "cf401ea2-b0d9-4067-b539-8d142d59b27e" + "695e0491-daf2-4576-a86d-fa55a46da45f" ], "OData-Version": [ "4.0" @@ -285,16 +285,16 @@ "1197" ], "x-ms-correlation-request-id": [ - "d93f5d32-dd82-4b72-a051-9a12f4827f42" + "100194f2-113b-444b-a788-276794d12b65" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T163157Z:d93f5d32-dd82-4b72-a051-9a12f4827f42" + "WESTUS:20201027T013134Z:100194f2-113b-444b-a788-276794d12b65" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 16:31:56 GMT" + "Tue, 27 Oct 2020 01:31:33 GMT" ], "Content-Length": [ "2562" @@ -306,17 +306,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy8190\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3795/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8190\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy7292\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup9228/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy7292\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": [\r\n \"Uppercase\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 201 } ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup3795" + "cdnResourceGroup9228" ], "WafPolicyCreateOrUpdateTest": [ - "policy4017", - "policy8190" + "policy2267", + "policy7292" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyDeleteTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyDeleteTest.json index 586936d20f94b..7efc8318771e5 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyDeleteTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyDeleteTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8712?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NzEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7819?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3ODE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "5b086c74-b9b1-4570-97c2-e29fe5b35506" + "6dd866cf-d263-4be5-a872-24b8f7bf316b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c6359325-f7fe-4bb3-8ccf-daee62ebda68" + "a06f4a8b-467d-42f1-9b5f-0e456652c26b" ], "x-ms-correlation-request-id": [ - "c6359325-f7fe-4bb3-8ccf-daee62ebda68" + "a06f4a8b-467d-42f1-9b5f-0e456652c26b" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001842Z:c6359325-f7fe-4bb3-8ccf-daee62ebda68" + "WESTUS:20201027T013135Z:a06f4a8b-467d-42f1-9b5f-0e456652c26b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:41 GMT" + "Tue, 27 Oct 2020 01:31:35 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8712\",\r\n \"name\": \"cdnResourceGroup8712\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7819\",\r\n \"name\": \"cdnResourceGroup7819\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8712/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy1112?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kxMTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7819/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy3016?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3ODE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kzMDE2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "4c5f4da3-a1b0-4f2c-b8b7-c022deb0b705" + "d78b5703-4d84-4cd8-ba45-586f22d66824" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,10 +99,10 @@ "no-cache" ], "x-ms-request-id": [ - "c2713ac9-8bf8-47fc-bb95-f55123a977e3" + "a28db70a-c9b5-4ce4-9ebf-cf33ad41617d" ], "x-ms-client-request-id": [ - "4c5f4da3-a1b0-4f2c-b8b7-c022deb0b705" + "d78b5703-4d84-4cd8-ba45-586f22d66824" ], "OData-Version": [ "4.0" @@ -120,19 +120,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1199" ], "x-ms-correlation-request-id": [ - "215818e8-2138-4812-b19e-3c0e233889d4" + "19cd8575-afc3-453f-b868-fb8cc42d97dd" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001858Z:215818e8-2138-4812-b19e-3c0e233889d4" + "WESTUS:20201027T013138Z:19cd8575-afc3-453f-b868-fb8cc42d97dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:57 GMT" + "Tue, 27 Oct 2020 01:31:38 GMT" ], "Content-Length": [ "827" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy1112\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8712/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy1112\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy3016\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7819/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy3016\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP8712/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA4NzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP7819/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA3ODE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e3bbaf7d-a05d-4f4c-9b2c-516c01aa6765" + "b7f67da3-71d3-412f-bdd8-3201a41e4b50" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "13ec69ad-d8f4-48a2-b1ad-7e7b7e420ea7" + "8085b0ab-21ad-4e1a-bece-150c175abc4e" ], "x-ms-client-request-id": [ - "e3bbaf7d-a05d-4f4c-9b2c-516c01aa6765" + "b7f67da3-71d3-412f-bdd8-3201a41e4b50" ], "OData-Version": [ "4.0" @@ -195,19 +195,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11999" + "11996" ], "x-ms-correlation-request-id": [ - "c90af673-334d-4267-a3ae-ee0b0b2cd85b" + "31fd6e81-8b76-4d92-a0d8-366cf0f6f8af" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001858Z:c90af673-334d-4267-a3ae-ee0b0b2cd85b" + "WESTUS:20201027T013139Z:31fd6e81-8b76-4d92-a0d8-366cf0f6f8af" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:58 GMT" + "Tue, 27 Oct 2020 01:31:38 GMT" ], "Content-Length": [ "951" @@ -219,26 +219,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"policy1112\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8712/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy1112\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"policy3016\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7819/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy3016\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP8712/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA4NzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP7819/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA3ODE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9bbc1559-7c53-47ee-98f0-78b434935a2a" + "fc77e3fc-a7f2-49de-aa96-0ae17f9ff9f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -249,10 +249,10 @@ "no-cache" ], "x-ms-request-id": [ - "d93ccae5-8b27-4685-ac64-1c4949a77548" + "801bbe9a-4acd-45cf-9849-6556b6da6d7e" ], "x-ms-client-request-id": [ - "9bbc1559-7c53-47ee-98f0-78b434935a2a" + "fc77e3fc-a7f2-49de-aa96-0ae17f9ff9f9" ], "OData-Version": [ "4.0" @@ -270,19 +270,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11998" + "11995" ], "x-ms-correlation-request-id": [ - "aaa20c93-0323-4adc-8405-a000d1caae1a" + "7be066dc-1d1f-4bbb-a11d-1dc8e08ce5de" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001901Z:aaa20c93-0323-4adc-8405-a000d1caae1a" + "WESTUS:20201027T013141Z:7be066dc-1d1f-4bbb-a11d-1dc8e08ce5de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:00 GMT" + "Tue, 27 Oct 2020 01:31:41 GMT" ], "Content-Length": [ "28" @@ -298,22 +298,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup8712/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy1112?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA4NzEyL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kxMTEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7819/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy3016?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3ODE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kzMDE2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a564185-bff8-4277-b5eb-44bf96d65dd7" + "bb639b83-8db0-4bfc-8801-caaf34915190" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -324,10 +324,10 @@ "no-cache" ], "x-ms-request-id": [ - "ab5c7c55-eba0-439a-973d-11e2272671e0" + "d00a695f-9a2d-4b01-b2ec-66d1b6719071" ], "x-ms-client-request-id": [ - "0a564185-bff8-4277-b5eb-44bf96d65dd7" + "bb639b83-8db0-4bfc-8801-caaf34915190" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -345,16 +345,16 @@ "14999" ], "x-ms-correlation-request-id": [ - "ea4353d7-2ad7-4bb4-9bb3-f947a267fef1" + "a63b0b46-da7b-43c3-9f0c-fe8b07d1c957" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001900Z:ea4353d7-2ad7-4bb4-9bb3-f947a267fef1" + "WESTUS:20201027T013141Z:a63b0b46-da7b-43c3-9f0c-fe8b07d1c957" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:00 GMT" + "Tue, 27 Oct 2020 01:31:40 GMT" ], "Expires": [ "-1" @@ -364,21 +364,21 @@ "StatusCode": 204 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup8712?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA4NzEyP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7819?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3ODE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ebbc67d7-9174-4cb5-a255-7f5c7b4fa142" + "6b924df8-a831-4237-8f4d-6c40bc87e64c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -390,7 +390,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -399,13 +399,13 @@ "14999" ], "x-ms-request-id": [ - "4db3928e-0b0a-4b77-b1b4-581ceba00476" + "7d84fa66-6228-4690-8bb1-d41ad11cd117" ], "x-ms-correlation-request-id": [ - "4db3928e-0b0a-4b77-b1b4-581ceba00476" + "7d84fa66-6228-4690-8bb1-d41ad11cd117" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001901Z:4db3928e-0b0a-4b77-b1b4-581ceba00476" + "WESTUS:20201027T013142Z:7d84fa66-6228-4690-8bb1-d41ad11cd117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -414,7 +414,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:01 GMT" + "Tue, 27 Oct 2020 01:31:41 GMT" ], "Expires": [ "-1" @@ -427,15 +427,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGN4TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOemd4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -447,22 +447,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11997" + "11999" ], "x-ms-request-id": [ - "03f0c306-68fe-470b-9360-da7f2015ed3d" + "7fc2c878-4b0b-4a90-a004-a25c6ba52cb3" ], "x-ms-correlation-request-id": [ - "03f0c306-68fe-470b-9360-da7f2015ed3d" + "7fc2c878-4b0b-4a90-a004-a25c6ba52cb3" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001916Z:03f0c306-68fe-470b-9360-da7f2015ed3d" + "WESTUS:20201027T013157Z:7fc2c878-4b0b-4a90-a004-a25c6ba52cb3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -471,7 +471,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:16 GMT" + "Tue, 27 Oct 2020 01:31:57 GMT" ], "Expires": [ "-1" @@ -484,15 +484,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGN4TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOemd4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -504,22 +504,22 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11996" + "11998" ], "x-ms-request-id": [ - "6d1ca3f4-0009-4916-be7c-fceb421251dc" + "4188922f-0d28-4175-9383-f48c851fc1d3" ], "x-ms-correlation-request-id": [ - "6d1ca3f4-0009-4916-be7c-fceb421251dc" + "4188922f-0d28-4175-9383-f48c851fc1d3" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001931Z:6d1ca3f4-0009-4916-be7c-fceb421251dc" + "WESTUS:20201027T013212Z:4188922f-0d28-4175-9383-f48c851fc1d3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -528,7 +528,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:31 GMT" + "Tue, 27 Oct 2020 01:32:12 GMT" ], "Expires": [ "-1" @@ -541,15 +541,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGN4TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOemd4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -561,16 +561,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11997" ], "x-ms-request-id": [ - "73cf9b26-0459-4b89-bef5-1f6b007f6ba9" + "b4e93585-0a4f-4681-a6f9-b133f680a8e6" ], "x-ms-correlation-request-id": [ - "73cf9b26-0459-4b89-bef5-1f6b007f6ba9" + "b4e93585-0a4f-4681-a6f9-b133f680a8e6" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001946Z:73cf9b26-0459-4b89-bef5-1f6b007f6ba9" + "WESTUS:20201027T013227Z:b4e93585-0a4f-4681-a6f9-b133f680a8e6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -579,7 +579,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:46 GMT" + "Tue, 27 Oct 2020 01:32:27 GMT" ], "Expires": [ "-1" @@ -592,15 +592,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQODcxMi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFPRGN4TWkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzgxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOemd4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -612,16 +612,16 @@ "no-cache" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11996" ], "x-ms-request-id": [ - "3472da1b-5f7a-47f5-83f8-f9853c1b3ff7" + "e6181ad8-1e02-4fc3-b41d-16f27286e96c" ], "x-ms-correlation-request-id": [ - "3472da1b-5f7a-47f5-83f8-f9853c1b3ff7" + "e6181ad8-1e02-4fc3-b41d-16f27286e96c" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001946Z:3472da1b-5f7a-47f5-83f8-f9853c1b3ff7" + "WESTUS:20201027T013227Z:e6181ad8-1e02-4fc3-b41d-16f27286e96c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -630,7 +630,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:19:46 GMT" + "Tue, 27 Oct 2020 01:32:27 GMT" ], "Expires": [ "-1" @@ -645,10 +645,10 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup8712" + "cdnResourceGroup7819" ], "WafPolicyDeleteTest": [ - "policy1112" + "policy3016" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyGetListTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyGetListTest.json index c75a5dd827368..12bd3839705b8 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyGetListTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyGetListTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6306?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3155?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMTU1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "03c4e8a6-7e89-4f80-86f4-204a646e4dfa" + "65064c2c-d83c-4a59-a8da-be580171ece7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "c9964903-baa7-485a-b8b5-d2b59427e986" + "cf16aa28-44c4-48a6-8ecc-f01f3c3e66a2" ], "x-ms-correlation-request-id": [ - "c9964903-baa7-485a-b8b5-d2b59427e986" + "cf16aa28-44c4-48a6-8ecc-f01f3c3e66a2" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001638Z:c9964903-baa7-485a-b8b5-d2b59427e986" + "WESTUS:20201027T012926Z:cf16aa28-44c4-48a6-8ecc-f01f3c3e66a2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:37 GMT" + "Tue, 27 Oct 2020 01:29:25 GMT" ], "Content-Length": [ "193" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6306\",\r\n \"name\": \"cdnResourceGroup6306\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3155\",\r\n \"name\": \"cdnResourceGroup3155\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP6306/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA2MzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP3155/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVAzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f2869190-18ee-4cdc-8d95-6c7f1e902216" + "ff6be879-0ee6-4bff-a859-c825143174e1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -93,10 +93,10 @@ "no-cache" ], "x-ms-request-id": [ - "e75e4c48-5c59-4e87-8af9-888bd7130d72" + "ebcf85aa-61f5-4f8f-88c4-caf4aa115e6c" ], "x-ms-client-request-id": [ - "f2869190-18ee-4cdc-8d95-6c7f1e902216" + "ff6be879-0ee6-4bff-a859-c825143174e1" ], "OData-Version": [ "4.0" @@ -117,16 +117,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "152d6ae5-499a-416c-af1b-1af6dbc1b2ab" + "e81ccd0d-c107-4f64-8472-f5b312d02383" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001638Z:152d6ae5-499a-416c-af1b-1af6dbc1b2ab" + "WESTUS:20201027T012932Z:e81ccd0d-c107-4f64-8472-f5b312d02383" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:38 GMT" + "Tue, 27 Oct 2020 01:29:31 GMT" ], "Content-Length": [ "28" @@ -142,22 +142,22 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP6306/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVA2MzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/CDNRESOURCEGROUP3155/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL0NETlJFU09VUkNFR1JPVVAzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcz9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e89f2073-4cb4-4d8e-b6e1-4336ae474dd7" + "bcc69cac-cf2a-403a-b799-9a86c66d02d1" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -168,10 +168,10 @@ "no-cache" ], "x-ms-request-id": [ - "e806b081-503a-434e-9fb7-5938d0569fdd" + "ce15d7fd-6d20-4f54-a1b5-03ee60135690" ], "x-ms-client-request-id": [ - "e89f2073-4cb4-4d8e-b6e1-4336ae474dd7" + "bcc69cac-cf2a-403a-b799-9a86c66d02d1" ], "OData-Version": [ "4.0" @@ -192,16 +192,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "615445ac-76b2-4815-b052-70748598b773" + "d429612a-fbd5-48ad-9790-2b808cacb2de" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001649Z:615445ac-76b2-4815-b052-70748598b773" + "WESTUS:20201027T012937Z:d429612a-fbd5-48ad-9790-2b808cacb2de" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:48 GMT" + "Tue, 27 Oct 2020 01:29:36 GMT" ], "Content-Length": [ "951" @@ -213,26 +213,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"policy1015\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6306/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy1015\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"policy3684\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3155/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy3684\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n }\r\n ]\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6306/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy1015?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kxMDE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3155/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy3684?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kzNjg0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "d9762a71-6b9c-4f41-9f9b-3d43a590301d" + "c24466b3-8a83-4b85-8bc3-64e66b9f65c8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -249,10 +249,10 @@ "no-cache" ], "x-ms-request-id": [ - "a51afe0a-99d7-4090-a54c-9421c6c35426" + "61e383e3-71ff-4b0d-a144-5dcde3facf07" ], "x-ms-client-request-id": [ - "d9762a71-6b9c-4f41-9f9b-3d43a590301d" + "c24466b3-8a83-4b85-8bc3-64e66b9f65c8" ], "OData-Version": [ "4.0" @@ -273,16 +273,16 @@ "1199" ], "x-ms-correlation-request-id": [ - "6e7ce6f1-cf22-4762-bfcf-3c01716601fd" + "dcdb0a37-d8a6-4ff4-b9ab-680fb0da3a5b" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001648Z:6e7ce6f1-cf22-4762-bfcf-3c01716601fd" + "WESTUS:20201027T012935Z:dcdb0a37-d8a6-4ff4-b9ab-680fb0da3a5b" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:47 GMT" + "Tue, 27 Oct 2020 01:29:35 GMT" ], "Content-Length": [ "827" @@ -294,26 +294,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy1015\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6306/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy1015\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy3684\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3155/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy3684\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup6306/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy1015?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA2MzA2L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kxMDE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup3155/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy3684?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAzMTU1L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3kzNjg0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e73a3820-f899-46ba-868d-4910b3298f40" + "760b23a1-d6d4-41d2-84ac-3c64429769e3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -324,10 +324,10 @@ "no-cache" ], "x-ms-request-id": [ - "8dc12a04-f108-4548-9596-e49c3c5f0126" + "551909b4-cff4-4fb5-a00b-4042ea3033e8" ], "x-ms-client-request-id": [ - "e73a3820-f899-46ba-868d-4910b3298f40" + "760b23a1-d6d4-41d2-84ac-3c64429769e3" ], "OData-Version": [ "4.0" @@ -348,16 +348,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "aedc1b2c-c1bf-4485-a136-5f8ff48e7ae7" + "9400a747-7e63-4a4f-a28f-3eb71d3bc87e" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001648Z:aedc1b2c-c1bf-4485-a136-5f8ff48e7ae7" + "WESTUS:20201027T012936Z:9400a747-7e63-4a4f-a28f-3eb71d3bc87e" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:47 GMT" + "Tue, 27 Oct 2020 01:29:36 GMT" ], "Content-Length": [ "827" @@ -369,25 +369,25 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy1015\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6306/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy1015\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy3684\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3155/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy3684\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Prevention\",\r\n \"defaultRedirectUrl\": null,\r\n \"defaultCustomBlockResponseStatusCode\": null,\r\n \"defaultCustomBlockResponseBody\": null\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": []\r\n },\r\n \"customRules\": {\r\n \"rules\": []\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": []\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {},\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup6306?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA2MzA2P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup3155?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAzMTU1P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "331e1926-5819-4387-b017-a3b50c42ef1c" + "cbff9383-dd47-4e58-8a9c-eaf0b83fcd1c" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -399,7 +399,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -408,13 +408,13 @@ "14999" ], "x-ms-request-id": [ - "22196dc6-6549-4312-a2e7-ed9cad224c9d" + "96725c9d-59ed-4c85-8f25-73a97eed9140" ], "x-ms-correlation-request-id": [ - "22196dc6-6549-4312-a2e7-ed9cad224c9d" + "96725c9d-59ed-4c85-8f25-73a97eed9140" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001649Z:22196dc6-6549-4312-a2e7-ed9cad224c9d" + "WESTUS:20201027T012937Z:96725c9d-59ed-4c85-8f25-73a97eed9140" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -423,7 +423,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:16:49 GMT" + "Tue, 27 Oct 2020 01:29:36 GMT" ], "Expires": [ "-1" @@ -436,15 +436,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -456,7 +456,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -465,13 +465,13 @@ "11999" ], "x-ms-request-id": [ - "dd3c2336-42e9-4ff4-9065-76118dd3d581" + "187c09c3-41c0-428f-93e0-f8bbc1da6167" ], "x-ms-correlation-request-id": [ - "dd3c2336-42e9-4ff4-9065-76118dd3d581" + "187c09c3-41c0-428f-93e0-f8bbc1da6167" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001704Z:dd3c2336-42e9-4ff4-9065-76118dd3d581" + "WESTUS:20201027T012952Z:187c09c3-41c0-428f-93e0-f8bbc1da6167" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -480,7 +480,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:17:04 GMT" + "Tue, 27 Oct 2020 01:29:51 GMT" ], "Expires": [ "-1" @@ -493,15 +493,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -513,7 +513,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -522,13 +522,13 @@ "11998" ], "x-ms-request-id": [ - "f7863692-749f-43fa-aaba-2f1f617ad392" + "60de6bd7-0260-4f57-8b1c-b6c64363867e" ], "x-ms-correlation-request-id": [ - "f7863692-749f-43fa-aaba-2f1f617ad392" + "60de6bd7-0260-4f57-8b1c-b6c64363867e" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001719Z:f7863692-749f-43fa-aaba-2f1f617ad392" + "WESTUS:20201027T013007Z:60de6bd7-0260-4f57-8b1c-b6c64363867e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -537,7 +537,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:17:19 GMT" + "Tue, 27 Oct 2020 01:30:07 GMT" ], "Expires": [ "-1" @@ -550,15 +550,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -570,7 +570,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -579,13 +579,13 @@ "11997" ], "x-ms-request-id": [ - "035414b0-9dd8-435f-a2e0-af9fd1f4d175" + "6e70ddb0-8737-4c4e-a853-bc45e16720a5" ], "x-ms-correlation-request-id": [ - "035414b0-9dd8-435f-a2e0-af9fd1f4d175" + "6e70ddb0-8737-4c4e-a853-bc45e16720a5" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001734Z:035414b0-9dd8-435f-a2e0-af9fd1f4d175" + "WESTUS:20201027T013022Z:6e70ddb0-8737-4c4e-a853-bc45e16720a5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -594,7 +594,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:17:34 GMT" + "Tue, 27 Oct 2020 01:30:22 GMT" ], "Expires": [ "-1" @@ -607,15 +607,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -627,7 +627,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -636,13 +636,13 @@ "11996" ], "x-ms-request-id": [ - "65f3d840-49e7-43cd-8381-e09e1cd4b0d5" + "d86ac235-0bf2-41da-a7c2-1882b324ec69" ], "x-ms-correlation-request-id": [ - "65f3d840-49e7-43cd-8381-e09e1cd4b0d5" + "d86ac235-0bf2-41da-a7c2-1882b324ec69" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001750Z:65f3d840-49e7-43cd-8381-e09e1cd4b0d5" + "WESTUS:20201027T013037Z:d86ac235-0bf2-41da-a7c2-1882b324ec69" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -651,7 +651,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:17:49 GMT" + "Tue, 27 Oct 2020 01:30:37 GMT" ], "Expires": [ "-1" @@ -664,15 +664,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -684,7 +684,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -693,13 +693,13 @@ "11995" ], "x-ms-request-id": [ - "a4ad3da3-d1cb-49f0-bb69-55bf07c80910" + "ac2002fa-0d97-45f9-9be1-594401bf85b7" ], "x-ms-correlation-request-id": [ - "a4ad3da3-d1cb-49f0-bb69-55bf07c80910" + "ac2002fa-0d97-45f9-9be1-594401bf85b7" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001805Z:a4ad3da3-d1cb-49f0-bb69-55bf07c80910" + "WESTUS:20201027T013052Z:ac2002fa-0d97-45f9-9be1-594401bf85b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -708,7 +708,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:04 GMT" + "Tue, 27 Oct 2020 01:30:52 GMT" ], "Expires": [ "-1" @@ -721,15 +721,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -741,7 +741,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -750,13 +750,13 @@ "11994" ], "x-ms-request-id": [ - "6c25b46f-c2f0-45bd-9bfe-86a886fa7160" + "d25ed6c3-c859-4699-aa5c-9fd4cb7a0392" ], "x-ms-correlation-request-id": [ - "6c25b46f-c2f0-45bd-9bfe-86a886fa7160" + "d25ed6c3-c859-4699-aa5c-9fd4cb7a0392" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001820Z:6c25b46f-c2f0-45bd-9bfe-86a886fa7160" + "WESTUS:20201027T013107Z:d25ed6c3-c859-4699-aa5c-9fd4cb7a0392" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -765,7 +765,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:19 GMT" + "Tue, 27 Oct 2020 01:31:07 GMT" ], "Expires": [ "-1" @@ -778,15 +778,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -801,13 +801,13 @@ "11993" ], "x-ms-request-id": [ - "710ec113-3877-4485-a627-29626edf9f8f" + "8fbbc376-c5de-4d36-bf9b-863bbfd49da5" ], "x-ms-correlation-request-id": [ - "710ec113-3877-4485-a627-29626edf9f8f" + "8fbbc376-c5de-4d36-bf9b-863bbfd49da5" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001835Z:710ec113-3877-4485-a627-29626edf9f8f" + "WESTUS:20201027T013123Z:8fbbc376-c5de-4d36-bf9b-863bbfd49da5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -816,7 +816,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:35 GMT" + "Tue, 27 Oct 2020 01:31:22 GMT" ], "Expires": [ "-1" @@ -829,15 +829,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNjMwNi1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOak13TmkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMzE1NS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNekUxTlMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -852,13 +852,13 @@ "11992" ], "x-ms-request-id": [ - "52d622b5-646f-49c1-b42a-928c24c7842e" + "57decd89-953e-4b0f-b175-347ab0dc0198" ], "x-ms-correlation-request-id": [ - "52d622b5-646f-49c1-b42a-928c24c7842e" + "57decd89-953e-4b0f-b175-347ab0dc0198" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T001835Z:52d622b5-646f-49c1-b42a-928c24c7842e" + "WESTUS:20201027T013123Z:57decd89-953e-4b0f-b175-347ab0dc0198" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -867,7 +867,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 00:18:35 GMT" + "Tue, 27 Oct 2020 01:31:22 GMT" ], "Expires": [ "-1" @@ -882,10 +882,10 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup6306" + "cdnResourceGroup3155" ], "WafPolicyGetListTest": [ - "policy1015" + "policy3684" ] }, "Variables": { diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyLinkTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyLinkTest.json index a13ed9a4b0a9c..674cf9046a139 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyLinkTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/WafTests/WafPolicyLinkTest.json @@ -1,21 +1,21 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "59b827db-373b-4a6f-9594-7d2a10485a9c" + "34db421b-b85c-4408-b253-6059f0aeb86d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "49e5be1e-48ae-4ac7-b0e9-dd6c552db309" + "c838d7c6-f2cb-49c9-9ec3-8db4cb889116" ], "x-ms-correlation-request-id": [ - "49e5be1e-48ae-4ac7-b0e9-dd6c552db309" + "c838d7c6-f2cb-49c9-9ec3-8db4cb889116" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014322Z:49e5be1e-48ae-4ac7-b0e9-dd6c552db309" + "WESTUS:20201027T013229Z:c838d7c6-f2cb-49c9-9ec3-8db4cb889116" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,10 +51,10 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:43:21 GMT" + "Tue, 27 Oct 2020 01:32:28 GMT" ], "Content-Length": [ - "193" + "191" ], "Content-Type": [ "application/json; charset=utf-8" @@ -63,26 +63,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743\",\r\n \"name\": \"cdnResourceGroup2743\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254\",\r\n \"name\": \"cdnResourceGroup254\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4596?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0NTk2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vQ2RuV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BvbGljeTg5Mzk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"rateLimitThreshold\": 3,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"rateLimitThreshold\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ]\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n ]\r\n }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n },\r\n \"location\": \"Global\",\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "0f14211e-bdaf-40bf-8f40-4391e46ab8a4" + "98e45a60-0600-475f-ba45-a361649f9fe3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -99,10 +99,10 @@ "no-cache" ], "x-ms-request-id": [ - "b4791f17-f5f0-442b-8fde-948953cc8b69" + "ade887de-7227-4648-9d63-7cb793276733" ], "x-ms-client-request-id": [ - "0f14211e-bdaf-40bf-8f40-4391e46ab8a4" + "98e45a60-0600-475f-ba45-a361649f9fe3" ], "OData-Version": [ "4.0" @@ -123,19 +123,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "a513e249-3f16-4cca-a2fe-3ce2ade88e06" + "49213772-91d6-4bf6-93ca-bb93c3eb5ff2" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014328Z:a513e249-3f16-4cca-a2fe-3ce2ade88e06" + "WESTUS:20201027T013233Z:49213772-91d6-4bf6-93ca-bb93c3eb5ff2" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:43:28 GMT" + "Tue, 27 Oct 2020 01:32:32 GMT" ], "Content-Length": [ - "2551" + "2550" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -144,26 +144,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4596\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PUT", "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": { "x-ms-client-request-id": [ - "2d6e50ad-0ac8-47d2-ad5a-9ea4c79cb038" + "e33ca2ee-fcae-4278-8ba5-ea8e0524f5b2" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -183,13 +183,13 @@ "10" ], "x-ms-request-id": [ - "4a6bc5fc-6c03-4122-9328-c189edce85e2" + "f7e103a9-5b70-44f1-ad4f-563157707530" ], "x-ms-client-request-id": [ - "2d6e50ad-0ac8-47d2-ad5a-9ea4c79cb038" + "e33ca2ee-fcae-4278-8ba5-ea8e0524f5b2" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/1d0ff9ee-5988-4d5f-a6d3-25ae84d6bfc6?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/b9ebbd3d-1e8c-4da9-a263-52d211924383?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -210,19 +210,19 @@ "24" ], "x-ms-correlation-request-id": [ - "8bafb5b3-0faa-4558-9eee-c3de3f8da435" + "b680521b-6b0b-480e-a61a-b82463f7b4f9" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014433Z:8bafb5b3-0faa-4558-9eee-c3de3f8da435" + "WESTUS:20201027T013338Z:b680521b-6b0b-480e-a61a-b82463f7b4f9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:44:32 GMT" + "Tue, 27 Oct 2020 01:33:37 GMT" ], "Content-Length": [ - "400" + "399" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -231,20 +231,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5754\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile5456\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/1d0ff9ee-5988-4d5f-a6d3-25ae84d6bfc6?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMWQwZmY5ZWUtNTk4OC00ZDVmLWE2ZDMtMjVhZTg0ZDZiZmM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/b9ebbd3d-1e8c-4da9-a263-52d211924383?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iOWViYmQzZC0xZThjLTRkYTktYTI2My01MmQyMTE5MjQzODM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -255,10 +255,10 @@ "no-cache" ], "x-ms-request-id": [ - "335a53d2-c15f-4e80-ab63-55fc93794da3" + "c6720947-0a67-4b49-8755-a1c4f46adf56" ], "x-ms-client-request-id": [ - "ad610843-dc8f-4687-b15f-59cfc71d468f" + "e234ca2e-16a2-4b8c-93c2-485d793dd553" ], "OData-Version": [ "4.0" @@ -279,16 +279,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "13cec7c5-27bc-4bbe-835a-4bbab4a46761" + "431171a0-7f78-4972-9ae0-24f7fff8eba8" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014443Z:13cec7c5-27bc-4bbe-835a-4bbab4a46761" + "WESTUS:20201027T013348Z:431171a0-7f78-4972-9ae0-24f7fff8eba8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:44:42 GMT" + "Tue, 27 Oct 2020 01:33:47 GMT" ], "Content-Length": [ "78" @@ -304,16 +304,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/1d0ff9ee-5988-4d5f-a6d3-25ae84d6bfc6?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMWQwZmY5ZWUtNTk4OC00ZDVmLWE2ZDMtMjVhZTg0ZDZiZmM2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/b9ebbd3d-1e8c-4da9-a263-52d211924383?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9iOWViYmQzZC0xZThjLTRkYTktYTI2My01MmQyMTE5MjQzODM/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -324,10 +324,10 @@ "no-cache" ], "x-ms-request-id": [ - "5801b0da-6aa8-4116-9608-337478fe6d93" + "0689ac63-11ff-4e6a-ad1a-f86c4d669640" ], "x-ms-client-request-id": [ - "3c6b427c-8d5a-44b7-9c9c-f40b6c8baa83" + "9b06b2cb-3b80-4bda-ba5e-b6211078215c" ], "OData-Version": [ "4.0" @@ -348,16 +348,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "a95c20de-8aa3-4968-972a-33d1bb61d6f8" + "a9bc3075-a71e-4a33-b752-98807b1575b1" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014453Z:a95c20de-8aa3-4968-972a-33d1bb61d6f8" + "WESTUS:20201027T013359Z:a9bc3075-a71e-4a33-b752-98807b1575b1" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:44:52 GMT" + "Tue, 27 Oct 2020 01:33:59 GMT" ], "Content-Length": [ "77" @@ -373,16 +373,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTY/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -393,10 +393,10 @@ "no-cache" ], "x-ms-request-id": [ - "4c2e2d3e-af89-453d-a8a2-8eec86dfe621" + "876ae42b-b5ab-4c2d-85ce-f847331f20ae" ], "x-ms-client-request-id": [ - "3d6ba7c4-8b74-40f3-a308-6249f7f283bd" + "6c056cd5-3707-4079-928d-52a5dfb8606f" ], "OData-Version": [ "4.0" @@ -417,19 +417,19 @@ "49" ], "x-ms-correlation-request-id": [ - "4d0bf2e6-09d5-4823-b875-506834e9591b" + "7d9c72c6-ca56-4a46-b53d-616fe5ed8154" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014454Z:4d0bf2e6-09d5-4823-b875-506834e9591b" + "WESTUS:20201027T013400Z:7d9c72c6-ca56-4a46-b53d-616fe5ed8154" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:44:53 GMT" + "Tue, 27 Oct 2020 01:34:00 GMT" ], "Content-Length": [ - "399" + "398" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -438,32 +438,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile5754\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile5456\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDUyNjU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50MTMyOT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\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}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\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": [ - "0ee6bde4-6fb8-480d-822f-bf67c18a1be0" + "29e43297-4e52-4faa-be1d-28976f065ef3" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "481" + "480" ] }, "ResponseHeaders": { @@ -477,13 +477,13 @@ "10" ], "x-ms-request-id": [ - "84da6c0a-e314-43b0-a4b2-48c225f8219c" + "2d6138c9-c43c-4451-8710-de5c2e964564" ], "x-ms-client-request-id": [ - "0ee6bde4-6fb8-480d-822f-bf67c18a1be0" + "29e43297-4e52-4faa-be1d-28976f065ef3" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/be751bb1-192c-4c9c-9a37-91e07ff335ba?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/a41eda84-d62c-47ab-8a7e-8fd796dad585?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -504,19 +504,19 @@ "99" ], "x-ms-correlation-request-id": [ - "df1a3c12-881d-4f2d-b7d2-437cf414b69c" + "55557eac-73f0-48bb-8982-36b525da5740" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014458Z:df1a3c12-881d-4f2d-b7d2-437cf414b69c" + "WESTUS:20201027T013405Z:55557eac-73f0-48bb-8982-36b525da5740" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:44:57 GMT" + "Tue, 27 Oct 2020 01:34:05 GMT" ], "Content-Length": [ - "1406" + "1404" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -525,26 +525,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint5265\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint5265.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1329\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1329.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDUyNjU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50MTMyOT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"geoFilters\": [],\r\n \"urlSigningKeys\": [],\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true\r\n }\r\n }\r\n ],\r\n \"originGroups\": []\r\n },\r\n \"location\": \"WestUs\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "698bad89-7fd5-4609-8636-0453e967c993" + "12f0668d-5b19-48ec-b10e-1942791ee10b" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -561,19 +561,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2e5a2fde-45be-40aa-9e08-b9238fc2cc12/profileresults/profile5754/endpointresults/endpoint5265?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/66b8b29b-6364-4c43-a5ac-957a50e64370/profileresults/profile5456/endpointresults/endpoint1329?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "84228960-576a-4cc2-8a8e-eef1242323c3" + "1d74caa2-0ae6-4a65-a0df-6c654ee3c67e" ], "x-ms-client-request-id": [ - "698bad89-7fd5-4609-8636-0453e967c993" + "12f0668d-5b19-48ec-b10e-1942791ee10b" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2e5a2fde-45be-40aa-9e08-b9238fc2cc12?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/66b8b29b-6364-4c43-a5ac-957a50e64370?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -594,19 +594,19 @@ "97" ], "x-ms-correlation-request-id": [ - "a3621e14-9e08-4920-aeca-f595dd113e1b" + "6109062d-541e-4a81-9278-faa4ac318f68" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014552Z:a3621e14-9e08-4920-aeca-f595dd113e1b" + "WESTUS:20201027T013522Z:6109062d-541e-4a81-9278-faa4ac318f68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:52 GMT" + "Tue, 27 Oct 2020 01:35:21 GMT" ], "Content-Length": [ - "1231" + "1230" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -615,20 +615,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint5265\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint5265.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1329\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1329.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/be751bb1-192c-4c9c-9a37-91e07ff335ba?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NTFiYjEtMTkyYy00YzljLTlhMzctOTFlMDdmZjMzNWJhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/a41eda84-d62c-47ab-8a7e-8fd796dad585?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9hNDFlZGE4NC1kNjJjLTQ3YWItOGE3ZS04ZmQ3OTZkYWQ1ODU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -639,10 +639,10 @@ "no-cache" ], "x-ms-request-id": [ - "096feea3-f9ae-4119-a463-9f6568ef2129" + "4849f203-96d7-4c83-9b36-f693c5a26fc1" ], "x-ms-client-request-id": [ - "160cc059-5a16-48f6-b63d-d28749cbe52c" + "6289383c-f7db-4b07-a2ec-8ea4bd2c8efe" ], "OData-Version": [ "4.0" @@ -663,16 +663,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "1e4de545-ab63-42be-b830-c8a4eda2e54c" + "e488c258-7369-4df7-aa04-787719cc40b0" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014508Z:1e4de545-ab63-42be-b830-c8a4eda2e54c" + "WESTUS:20201027T013415Z:e488c258-7369-4df7-aa04-787719cc40b0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:08 GMT" + "Tue, 27 Oct 2020 01:34:15 GMT" ], "Content-Length": [ "78" @@ -688,16 +688,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/be751bb1-192c-4c9c-9a37-91e07ff335ba?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvYmU3NTFiYjEtMTkyYy00YzljLTlhMzctOTFlMDdmZjMzNWJhP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/a41eda84-d62c-47ab-8a7e-8fd796dad585?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9hNDFlZGE4NC1kNjJjLTQ3YWItOGE3ZS04ZmQ3OTZkYWQ1ODU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -708,10 +708,10 @@ "no-cache" ], "x-ms-request-id": [ - "d94cff39-b5b7-45bf-bdf8-9c445d0fa65b" + "57738fed-c2ae-4771-bf86-cc57f111a469" ], "x-ms-client-request-id": [ - "41d86feb-5b0e-45b6-a318-095b66af3062" + "5cf6de42-5d40-4b4d-bc7d-9118cd1aefdb" ], "OData-Version": [ "4.0" @@ -732,16 +732,85 @@ "11996" ], "x-ms-correlation-request-id": [ - "9ce81d5f-c68f-4fbd-8a83-c1c00b60ff56" + "b8a35470-1d51-4169-8ffa-0d9366fc6dba" + ], + "x-ms-routing-request-id": [ + "WESTUS:20201027T013426Z:b8a35470-1d51-4169-8ffa-0d9366fc6dba" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Date": [ + "Tue, 27 Oct 2020 01:34:25 GMT" + ], + "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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/a41eda84-d62c-47ab-8a7e-8fd796dad585?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9hNDFlZGE4NC1kNjJjLTQ3YWItOGE3ZS04ZmQ3OTZkYWQ1ODU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "User-Agent": [ + "FxVersion/4.6.29321.03", + "OSName/Windows", + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" + ] + }, + "ResponseHeaders": { + "Cache-Control": [ + "no-cache" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "068d6d42-362f-4eb7-90dd-1494762752f5" + ], + "x-ms-client-request-id": [ + "44d8c189-75ba-4bbf-b492-90fa0286535c" + ], + "OData-Version": [ + "4.0" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "Server": [ + "Microsoft-IIS/10.0" + ], + "X-AspNet-Version": [ + "4.0.30319" + ], + "X-Powered-By": [ + "ASP.NET" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "11995" + ], + "x-ms-correlation-request-id": [ + "1ec8e195-45d2-4e21-b2b2-b1861a796c0d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014519Z:9ce81d5f-c68f-4fbd-8a83-c1c00b60ff56" + "WESTUS:20201027T013436Z:1ec8e195-45d2-4e21-b2b2-b1861a796c0d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:19 GMT" + "Tue, 27 Oct 2020 01:34:36 GMT" ], "Content-Length": [ "77" @@ -757,16 +826,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDUyNjU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50MTMyOT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -777,10 +846,10 @@ "no-cache" ], "x-ms-request-id": [ - "4e274e64-82ca-4cb4-9276-3f964db63bbb" + "102d51ab-5d7f-460d-8763-5664bc49d86b" ], "x-ms-client-request-id": [ - "cb1feb5c-695b-4108-971f-2cbbee70a9d3" + "73a31e21-b4b5-4a8a-b716-6c21cd0dc440" ], "OData-Version": [ "4.0" @@ -801,19 +870,19 @@ "49" ], "x-ms-correlation-request-id": [ - "78331f1f-24bc-4aba-8b05-39768676f850" + "3c5d2a4a-dcc0-4e88-aa22-c214308c2e6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014520Z:78331f1f-24bc-4aba-8b05-39768676f850" + "WESTUS:20201027T013437Z:3c5d2a4a-dcc0-4e88-aa22-c214308c2e6d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:20 GMT" + "Tue, 27 Oct 2020 01:34:37 GMT" ], "Content-Length": [ - "1406" + "1404" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -822,26 +891,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint5265\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint5265.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1329\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1329.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDUyNjU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50MTMyOT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "1b34d7d3-a7e4-40f6-9f11-c2e7924f1e3a" + "cd123a43-ea9a-45c2-add0-619dafc14be7" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -852,10 +921,10 @@ "no-cache" ], "x-ms-request-id": [ - "bdf92eb9-49e9-490d-b717-d2f7a4d2bf57" + "9baaa481-b60c-4cfc-a6a6-7009f41b6561" ], "x-ms-client-request-id": [ - "1b34d7d3-a7e4-40f6-9f11-c2e7924f1e3a" + "cd123a43-ea9a-45c2-add0-619dafc14be7" ], "OData-Version": [ "4.0" @@ -876,19 +945,19 @@ "48" ], "x-ms-correlation-request-id": [ - "ae2dd66b-2a73-4c30-bf32-055c59cc3ad9" + "282060ee-2538-4aa7-b65d-abc17b71ad3d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014521Z:ae2dd66b-2a73-4c30-bf32-055c59cc3ad9" + "WESTUS:20201027T013438Z:282060ee-2538-4aa7-b65d-abc17b71ad3d" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:21 GMT" + "Tue, 27 Oct 2020 01:34:38 GMT" ], "Content-Length": [ - "1406" + "1404" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -897,20 +966,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint5265\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint5265.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1329\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1329.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDUyNjU/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50MTMyOT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -921,10 +990,10 @@ "no-cache" ], "x-ms-request-id": [ - "808e2ca2-1713-43a7-b1fb-6020abbb4db0" + "c7f617e4-b065-4d07-8b53-7ace70b14232" ], "x-ms-client-request-id": [ - "8054e85b-ea8a-4339-9865-43b2448b2c4a" + "51300525-7524-4672-9816-3a54b309de63" ], "OData-Version": [ "4.0" @@ -945,19 +1014,19 @@ "45" ], "x-ms-correlation-request-id": [ - "bd8057d7-58b0-436a-b0f6-34c83c560434" + "a0c3c833-a380-412c-a7ee-8b970cdc1be5" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014604Z:bd8057d7-58b0-436a-b0f6-34c83c560434" + "WESTUS:20201027T013533Z:a0c3c833-a380-412c-a7ee-8b970cdc1be5" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:03 GMT" + "Tue, 27 Oct 2020 01:35:33 GMT" ], "Content-Length": [ - "1231" + "1230" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -966,26 +1035,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint5265\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint5265.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint1329\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint1329.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 \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4596?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0NTk2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vQ2RuV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BvbGljeTg5Mzk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "77e4c7d2-c648-47c5-98a8-34aa70646f37" + "cb4277bb-11db-49a1-b3a3-4d4395085c77" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -996,10 +1065,10 @@ "no-cache" ], "x-ms-request-id": [ - "8c400360-59a2-4f11-8bac-cc1c99b16e74" + "b158a6c0-b945-43d4-bcab-13f292fca41c" ], "x-ms-client-request-id": [ - "77e4c7d2-c648-47c5-98a8-34aa70646f37" + "cb4277bb-11db-49a1-b3a3-4d4395085c77" ], "OData-Version": [ "4.0" @@ -1017,22 +1086,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11995" + "11994" ], "x-ms-correlation-request-id": [ - "76d2be6a-cf59-4b98-80d3-066f2b38674d" + "513fe04e-2e9a-4a95-a634-4595dd0badbb" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014522Z:76d2be6a-cf59-4b98-80d3-066f2b38674d" + "WESTUS:20201027T013439Z:513fe04e-2e9a-4a95-a634-4595dd0badbb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:21 GMT" + "Tue, 27 Oct 2020 01:34:39 GMT" ], "Content-Length": [ - "2733" + "2731" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1041,26 +1110,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4596\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4596?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0NTk2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vQ2RuV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BvbGljeTg5Mzk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "cb5c8335-e133-4883-b0e3-c4f61cd3cafc" + "f642a72c-6026-4d3e-8ed7-76f84a8d736f" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1071,10 +1140,10 @@ "no-cache" ], "x-ms-request-id": [ - "b356ed1c-d6f4-45df-81b9-929183898e98" + "ba9fed10-d999-4d7a-9a5d-eb8b5a8f0626" ], "x-ms-client-request-id": [ - "cb5c8335-e133-4883-b0e3-c4f61cd3cafc" + "f642a72c-6026-4d3e-8ed7-76f84a8d736f" ], "OData-Version": [ "4.0" @@ -1092,22 +1161,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11992" + "11990" ], "x-ms-correlation-request-id": [ - "fc389adc-cc03-464b-b668-70017ace9a0e" + "829ef5ad-b6cc-4cef-ab7d-957e5bc1ac1c" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014550Z:fc389adc-cc03-464b-b668-70017ace9a0e" + "WESTUS:20201027T013519Z:829ef5ad-b6cc-4cef-ab7d-957e5bc1ac1c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:49 GMT" + "Tue, 27 Oct 2020 01:35:19 GMT" ], "Content-Length": [ - "2916" + "2913" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1116,26 +1185,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4596\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint5265\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint1329\"\r\n },\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4596?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0NTk2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vQ2RuV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BvbGljeTg5Mzk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "45d87620-6a2f-4608-b852-7c46eb481295" + "1566af12-08e3-4677-9c63-3c064f4dfbcb" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1146,10 +1215,10 @@ "no-cache" ], "x-ms-request-id": [ - "4a53fd93-6ac3-4671-bbcd-dbfd6708af9b" + "0027ab0f-3c52-4562-aca9-7b5a38dce94c" ], "x-ms-client-request-id": [ - "45d87620-6a2f-4608-b852-7c46eb481295" + "1566af12-08e3-4677-9c63-3c064f4dfbcb" ], "OData-Version": [ "4.0" @@ -1167,22 +1236,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11990" + "11988" ], "x-ms-correlation-request-id": [ - "5b8e82ad-8152-4294-857a-7607a4a1ad32" + "e26d7688-9bb1-472e-b2bf-07c1ec7e9524" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014604Z:5b8e82ad-8152-4294-857a-7607a4a1ad32" + "WESTUS:20201027T013534Z:e26d7688-9bb1-472e-b2bf-07c1ec7e9524" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:04 GMT" + "Tue, 27 Oct 2020 01:35:34 GMT" ], "Content-Length": [ - "2733" + "2731" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1191,26 +1260,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4596\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\"\r\n }\r\n ]\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy4596?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL0NkbldlYkFwcGxpY2F0aW9uRmlyZXdhbGxQb2xpY2llcy9wb2xpY3k0NTk2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/CdnWebApplicationFirewallPolicies/policy8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vQ2RuV2ViQXBwbGljYXRpb25GaXJld2FsbFBvbGljaWVzL3BvbGljeTg5Mzk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e8aa4ff8-dadc-4171-bffa-d2c71cfd59c9" + "9509f00e-6164-465b-85d1-c1588297cae8" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1221,10 +1290,10 @@ "no-cache" ], "x-ms-request-id": [ - "f8ce3ac3-cd68-43e7-a6a7-3ca47bef2758" + "43588f7d-c437-4b26-9af3-0165a478e2fc" ], "x-ms-client-request-id": [ - "e8aa4ff8-dadc-4171-bffa-d2c71cfd59c9" + "9509f00e-6164-465b-85d1-c1588297cae8" ], "OData-Version": [ "4.0" @@ -1242,22 +1311,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11987" + "11986" ], "x-ms-correlation-request-id": [ - "2bbdd7e9-3cd4-44f4-9e0d-72a63768338f" + "ee1419d2-59cf-447c-9d40-7992d2234c68" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014629Z:2bbdd7e9-3cd4-44f4-9e0d-72a63768338f" + "WESTUS:20201027T013549Z:ee1419d2-59cf-447c-9d40-7992d2234c68" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:28 GMT" + "Tue, 27 Oct 2020 01:35:48 GMT" ], "Content-Length": [ - "2551" + "2550" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1266,32 +1335,32 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"policy4596\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"policy8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\",\r\n \"type\": \"Microsoft.Cdn/cdnwebapplicationfirewallpolicies\",\r\n \"properties\": {\r\n \"resourceState\": \"Enabled\",\r\n \"provisioningState\": \"Succeeded\",\r\n \"policySettings\": {\r\n \"enabledState\": \"Enabled\",\r\n \"mode\": \"Detection\",\r\n \"defaultRedirectUrl\": \"https://example.com/redirected\",\r\n \"defaultCustomBlockResponseStatusCode\": 406,\r\n \"defaultCustomBlockResponseBody\": \"PGh0bWw+PGJvZHk+PGgzPkludmFsaWQgcmVxdWVzdDwvaDM+PC9ib2R5PjwvaHRtbD4=\"\r\n },\r\n \"rateLimitRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"RateLimitRule1\",\r\n \"enabledState\": \"Disabled\",\r\n \"priority\": 1,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 3,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RemoteAddr\",\r\n \"selector\": null,\r\n \"operator\": \"IPMatch\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"131.107.0.0/16\",\r\n \"167.220.0.0/16\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n },\r\n {\r\n \"name\": \"RateLimitRule2\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 10,\r\n \"rateLimitDurationInMinutes\": 1,\r\n \"rateLimitThreshold\": 1,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"RequestUri\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"yes\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"customRules\": {\r\n \"rules\": [\r\n {\r\n \"name\": \"CustomRule1\",\r\n \"enabledState\": \"Enabled\",\r\n \"priority\": 2,\r\n \"matchConditions\": [\r\n {\r\n \"matchVariable\": \"QueryString\",\r\n \"selector\": null,\r\n \"operator\": \"Contains\",\r\n \"negateCondition\": false,\r\n \"matchValue\": [\r\n \"TestTrigger123\"\r\n ],\r\n \"transforms\": []\r\n }\r\n ],\r\n \"action\": \"Block\"\r\n }\r\n ]\r\n },\r\n \"managedRules\": {\r\n \"managedRuleSets\": [\r\n {\r\n \"ruleSetType\": \"DefaultRuleSet\",\r\n \"ruleSetVersion\": \"1.0\",\r\n \"ruleGroupOverrides\": [\r\n {\r\n \"ruleGroupName\": \"JAVA\",\r\n \"rules\": [\r\n {\r\n \"ruleId\": \"944100\",\r\n \"enabledState\": \"Disabled\",\r\n \"action\": \"Redirect\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"anomalyScore\": 0\r\n }\r\n ]\r\n },\r\n \"endpointLinks\": []\r\n },\r\n \"tags\": {\r\n \"abc\": \"123\"\r\n },\r\n \"location\": \"Global\",\r\n \"sku\": {\r\n \"name\": \"Standard_Microsoft\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDI4OTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50NjU3OD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\"\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"EastUs\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "f760b828-9bd3-40da-8bbc-766f54919f5e" + "2c44e9e0-d74d-4dc8-9b97-f76dcc7ad993" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "482" + "481" ] }, "ResponseHeaders": { @@ -1305,13 +1374,13 @@ "10" ], "x-ms-request-id": [ - "b7a22ff1-1d6c-4bdd-b307-8bc0a48986b4" + "c034be7e-1cfd-428c-b88f-9e3a7dfaab7f" ], "x-ms-client-request-id": [ - "f760b828-9bd3-40da-8bbc-766f54919f5e" + "2c44e9e0-d74d-4dc8-9b97-f76dcc7ad993" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/4b4e9ef5-f688-4117-be01-fa9c1e8e4d81?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/574d2395-02d2-44dd-b3bd-ff8dfb1110dd?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1332,19 +1401,19 @@ "98" ], "x-ms-correlation-request-id": [ - "c4d17935-f20d-4cfd-9046-94053268d429" + "12151f28-9746-471f-8058-df8a7c0345c8" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014527Z:c4d17935-f20d-4cfd-9046-94053268d429" + "WESTUS:20201027T013445Z:12151f28-9746-471f-8058-df8a7c0345c8" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:26 GMT" + "Tue, 27 Oct 2020 01:34:45 GMT" ], "Content-Length": [ - "1407" + "1405" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1353,26 +1422,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2890\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2890.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6578.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Creating\",\r\n \"resourceState\": \"Creating\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDI4OTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50NjU3OD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PUT", "RequestBody": "{\r\n \"properties\": {\r\n \"contentTypesToCompress\": [],\r\n \"isCompressionEnabled\": false,\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"geoFilters\": [],\r\n \"urlSigningKeys\": [],\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true\r\n }\r\n }\r\n ],\r\n \"originGroups\": []\r\n },\r\n \"location\": \"EastUs\",\r\n \"tags\": {}\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e9f8d515-a726-4f08-992a-e73d9a72dae6" + "9820e211-758c-4370-ac43-60f3e6a24c6d" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" @@ -1389,19 +1458,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2c8ea742-828f-4ead-94c8-ca1f68f267db/profileresults/profile5754/endpointresults/endpoint2890?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/ac6730aa-c662-4bc0-94d3-156c8ab3af19/profileresults/profile5456/endpointresults/endpoint6578?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "31d983b8-56d8-47d6-867a-a2ef546bcfd4" + "ff399f97-69fd-4ddd-ae1c-048efc5264d9" ], "x-ms-client-request-id": [ - "e9f8d515-a726-4f08-992a-e73d9a72dae6" + "9820e211-758c-4370-ac43-60f3e6a24c6d" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2c8ea742-828f-4ead-94c8-ca1f68f267db?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/ac6730aa-c662-4bc0-94d3-156c8ab3af19?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1422,19 +1491,19 @@ "96" ], "x-ms-correlation-request-id": [ - "134ac9d3-a27e-4c0c-b3f6-b7701a343f55" + "e092b4d9-4864-42b4-a1f9-8ab3e5637b62" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014607Z:134ac9d3-a27e-4c0c-b3f6-b7701a343f55" + "WESTUS:20201027T013537Z:e092b4d9-4864-42b4-a1f9-8ab3e5637b62" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:06 GMT" + "Tue, 27 Oct 2020 01:35:36 GMT" ], "Content-Length": [ - "1232" + "1231" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -1443,20 +1512,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2890\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2890.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6578.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/4b4e9ef5-f688-4117-be01-fa9c1e8e4d81?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGI0ZTllZjUtZjY4OC00MTE3LWJlMDEtZmE5YzFlOGU0ZDgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/574d2395-02d2-44dd-b3bd-ff8dfb1110dd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy81NzRkMjM5NS0wMmQyLTQ0ZGQtYjNiZC1mZjhkZmIxMTEwZGQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1467,10 +1536,10 @@ "no-cache" ], "x-ms-request-id": [ - "e879032c-c495-4dff-9b48-03c65352388c" + "f40f52b5-2781-4312-93bc-51114f5f10b4" ], "x-ms-client-request-id": [ - "efa85b14-54f8-4cb8-a4ce-60488f03ba55" + "e1bf6bed-617c-4421-9e69-5401f0d0c556" ], "OData-Version": [ "4.0" @@ -1488,19 +1557,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11994" + "11993" ], "x-ms-correlation-request-id": [ - "dde14ab3-5427-4e6b-8fcb-d8a26e6d3ce2" + "3df8c80f-3023-4ad2-9b8a-1330d6f91452" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014537Z:dde14ab3-5427-4e6b-8fcb-d8a26e6d3ce2" + "WESTUS:20201027T013455Z:3df8c80f-3023-4ad2-9b8a-1330d6f91452" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:36 GMT" + "Tue, 27 Oct 2020 01:34:55 GMT" ], "Content-Length": [ "78" @@ -1516,16 +1585,16 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/4b4e9ef5-f688-4117-be01-fa9c1e8e4d81?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGI0ZTllZjUtZjY4OC00MTE3LWJlMDEtZmE5YzFlOGU0ZDgxP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/574d2395-02d2-44dd-b3bd-ff8dfb1110dd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy81NzRkMjM5NS0wMmQyLTQ0ZGQtYjNiZC1mZjhkZmIxMTEwZGQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1536,10 +1605,10 @@ "no-cache" ], "x-ms-request-id": [ - "9588b40d-7576-4cb5-97ed-68d689bbd6d7" + "8c1353f1-62bf-4f06-96db-5f502a404cbd" ], "x-ms-client-request-id": [ - "6635f0d7-1e93-4fe9-badf-61912eae3817" + "583f83f4-c486-44ff-9d90-9f02a61b312c" ], "OData-Version": [ "4.0" @@ -1557,22 +1626,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11993" + "11992" ], "x-ms-correlation-request-id": [ - "696072a2-3f13-4127-bd15-bf2bc209f2e8" + "b2c65924-2bef-4bba-83eb-a5d2a7ef5805" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014547Z:696072a2-3f13-4127-bd15-bf2bc209f2e8" + "WESTUS:20201027T013506Z:b2c65924-2bef-4bba-83eb-a5d2a7ef5805" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:47 GMT" + "Tue, 27 Oct 2020 01:35:05 GMT" ], "Content-Length": [ - "77" + "78" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1581,20 +1650,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDI4OTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/574d2395-02d2-44dd-b3bd-ff8dfb1110dd?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy81NzRkMjM5NS0wMmQyLTQ0ZGQtYjNiZC1mZjhkZmIxMTEwZGQ/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1605,10 +1674,10 @@ "no-cache" ], "x-ms-request-id": [ - "2d022b58-8aaf-4a12-8e00-8d532865192d" + "68a9825c-46c9-4a41-884b-8083ae7537d0" ], "x-ms-client-request-id": [ - "13d5cae8-a130-44b8-bfaa-e7bf9a93e1b4" + "4a091a7f-d303-4848-8551-1597620c7f12" ], "OData-Version": [ "4.0" @@ -1625,23 +1694,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "47" + "x-ms-ratelimit-remaining-subscription-reads": [ + "11991" ], "x-ms-correlation-request-id": [ - "c6a6f092-e338-4073-ad55-12169cc1dcfd" + "50115d28-64c9-441d-83a1-cf605f9eba01" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014548Z:c6a6f092-e338-4073-ad55-12169cc1dcfd" + "WESTUS:20201027T013516Z:50115d28-64c9-441d-83a1-cf605f9eba01" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:48 GMT" + "Tue, 27 Oct 2020 01:35:16 GMT" ], "Content-Length": [ - "1407" + "77" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1650,26 +1719,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2890\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2890.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDI4OTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50NjU3OD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { - "x-ms-client-request-id": [ - "5ee360d0-28f2-4b3f-8124-9226829d1c3f" - ], - "Accept-Language": [ - "en-US" - ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1680,10 +1743,10 @@ "no-cache" ], "x-ms-request-id": [ - "8c63c854-7633-4302-895d-6dd3d4b7f712" + "5fe64692-44fd-40cb-849e-ef27b6f2e4f6" ], "x-ms-client-request-id": [ - "5ee360d0-28f2-4b3f-8124-9226829d1c3f" + "b0a94bb1-a350-4411-b393-8c5a7c17c903" ], "OData-Version": [ "4.0" @@ -1701,22 +1764,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "46" + "47" ], "x-ms-correlation-request-id": [ - "dbba6737-eea5-4d98-a339-0c4d272dfdd4" + "c16915a6-f27d-4a9d-81b5-4f7fbf0826c7" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014549Z:dbba6737-eea5-4d98-a339-0c4d272dfdd4" + "WESTUS:20201027T013517Z:c16915a6-f27d-4a9d-81b5-4f7fbf0826c7" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:45:49 GMT" + "Tue, 27 Oct 2020 01:35:17 GMT" ], "Content-Length": [ - "1407" + "1405" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1725,20 +1788,26 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2890\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2890.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy4596\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6578.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU1NzU0L2VuZHBvaW50cy9lbmRwb2ludDI4OTA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50NjU3OD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { + "x-ms-client-request-id": [ + "589116ed-ca4e-41dc-aecd-24d0a6ac67ad" + ], + "Accept-Language": [ + "en-US" + ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1749,10 +1818,10 @@ "no-cache" ], "x-ms-request-id": [ - "603bf069-72ec-4275-b3b0-7768cd5b4a58" + "51efd649-b95f-4e31-a75a-5fb4c5b40d55" ], "x-ms-client-request-id": [ - "9fddb135-b3b9-4bf1-8a04-a550f108597a" + "589116ed-ca4e-41dc-aecd-24d0a6ac67ad" ], "OData-Version": [ "4.0" @@ -1770,22 +1839,22 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-resource-requests": [ - "44" + "46" ], "x-ms-correlation-request-id": [ - "f671c380-ddf7-4d9f-a125-6fa73fcd63f5" + "6bf80092-9e16-4674-a5bb-b402dc9ffb59" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014629Z:f671c380-ddf7-4d9f-a125-6fa73fcd63f5" + "WESTUS:20201027T013518Z:6bf80092-9e16-4674-a5bb-b402dc9ffb59" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:28 GMT" + "Tue, 27 Oct 2020 01:35:18 GMT" ], "Content-Length": [ - "1232" + "1405" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1794,20 +1863,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint2890\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/profiles/profile5754/endpoints/endpoint2890\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint2890.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6578.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/cdnwebapplicationfirewallpolicies/policy8939\"\r\n },\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2e5a2fde-45be-40aa-9e08-b9238fc2cc12?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmU1YTJmZGUtNDViZS00MGFhLTllMDgtYjkyMzhmYzJjYzEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vcHJvZmlsZXMvcHJvZmlsZTU0NTYvZW5kcG9pbnRzL2VuZHBvaW50NjU3OD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1818,10 +1887,10 @@ "no-cache" ], "x-ms-request-id": [ - "0db4ff3a-db70-438c-a7f1-a06bf38324a2" + "63b85214-8ec9-4f37-a22f-2fb842839312" ], "x-ms-client-request-id": [ - "9983a2b8-47c4-4d46-995e-628b5e3628f4" + "189fea0a-f797-4e8a-8de2-9a47929ac1b0" ], "OData-Version": [ "4.0" @@ -1838,23 +1907,23 @@ "X-Powered-By": [ "ASP.NET" ], - "x-ms-ratelimit-remaining-subscription-reads": [ - "11991" + "x-ms-ratelimit-remaining-subscription-resource-requests": [ + "44" ], "x-ms-correlation-request-id": [ - "ad7e9075-b743-4895-b32c-5a06422e4889" + "5693434e-1ef8-4650-852e-255b5d45133c" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014603Z:ad7e9075-b743-4895-b32c-5a06422e4889" + "WESTUS:20201027T013548Z:5693434e-1ef8-4650-852e-255b5d45133c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:02 GMT" + "Tue, 27 Oct 2020 01:35:47 GMT" ], "Content-Length": [ - "77" + "1231" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1863,20 +1932,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint6578\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/profiles/profile5456/endpoints/endpoint6578\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"EastUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint6578.azureedge.net\",\r\n \"originHostHeader\": null,\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Running\",\r\n \"isHttpAllowed\": false,\r\n \"isHttpsAllowed\": true,\r\n \"queryStringCachingBehavior\": \"IgnoreQueryString\",\r\n \"originPath\": null,\r\n \"origins\": [\r\n {\r\n \"name\": \"origin2\",\r\n \"properties\": {\r\n \"hostName\": \"host2.hello.com\",\r\n \"httpPort\": null,\r\n \"httpsPort\": null,\r\n \"originHostHeader\": null,\r\n \"priority\": 1,\r\n \"weight\": 1000,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": null,\r\n \"privateLinkLocation\": null,\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": null\r\n }\r\n }\r\n ],\r\n \"originGroups\": [],\r\n \"defaultOriginGroup\": null,\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2c8ea742-828f-4ead-94c8-ca1f68f267db?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmM4ZWE3NDItODI4Zi00ZWFkLTk0YzgtY2ExZjY4ZjI2N2RiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/66b8b29b-6364-4c43-a5ac-957a50e64370?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy82NmI4YjI5Yi02MzY0LTRjNDMtYTVhYy05NTdhNTBlNjQzNzA/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1887,10 +1956,10 @@ "no-cache" ], "x-ms-request-id": [ - "0c3a4617-b52b-42cc-8b98-a452576f0a59" + "743253d9-b2a0-4980-ac4f-d7fbc5c851f2" ], "x-ms-client-request-id": [ - "898e2af2-4468-4342-a456-afaddc1550ff" + "e2110c37-0a09-4416-8b20-82d264b9ca29" ], "OData-Version": [ "4.0" @@ -1911,19 +1980,19 @@ "11989" ], "x-ms-correlation-request-id": [ - "d0f37fbe-3e2b-442f-b89a-de580a9c686a" + "ff75c603-0594-4422-9fa2-6b008bca10ea" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014617Z:d0f37fbe-3e2b-442f-b89a-de580a9c686a" + "WESTUS:20201027T013532Z:ff75c603-0594-4422-9fa2-6b008bca10ea" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:16 GMT" + "Tue, 27 Oct 2020 01:35:32 GMT" ], "Content-Length": [ - "78" + "77" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1932,20 +2001,20 @@ "-1" ] }, - "ResponseBody": "{\r\n \"status\": \"InProgress\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", + "ResponseBody": "{\r\n \"status\": \"Succeeded\",\r\n \"error\": {\r\n \"code\": \"None\",\r\n \"message\": null\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743/providers/Microsoft.Cdn/operationresults/2c8ea742-828f-4ead-94c8-ca1f68f267db?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmM4ZWE3NDItODI4Zi00ZWFkLTk0YzgtY2ExZjY4ZjI2N2RiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254/providers/Microsoft.Cdn/operationresults/ac6730aa-c662-4bc0-94d3-156c8ab3af19?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQvcHJvdmlkZXJzL01pY3Jvc29mdC5DZG4vb3BlcmF0aW9ucmVzdWx0cy9hYzY3MzBhYS1jNjYyLTRiYzAtOTRkMy0xNTZjOGFiM2FmMTk/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", - "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.0.0" + "OSVersion/Microsoft.Windows.10.0.20231.", + "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, "ResponseHeaders": { @@ -1956,10 +2025,10 @@ "no-cache" ], "x-ms-request-id": [ - "04691e56-9a73-41fc-8b82-07f9561ba705" + "17ec0afd-497f-4c25-8d0e-60e339d4453a" ], "x-ms-client-request-id": [ - "ccf8a2ad-d741-48b1-a46f-8771c7396ed9" + "7d3e9922-e0e8-4947-996d-7f7951e8d977" ], "OData-Version": [ "4.0" @@ -1977,19 +2046,19 @@ "ASP.NET" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "11988" + "11987" ], "x-ms-correlation-request-id": [ - "267e61d3-9bd0-4767-ba0a-a7db2740d123" + "6ea4e8fa-ebe9-4369-9705-b04fac33d82a" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014628Z:267e61d3-9bd0-4767-ba0a-a7db2740d123" + "WESTUS:20201027T013547Z:6ea4e8fa-ebe9-4369-9705-b04fac33d82a" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:27 GMT" + "Tue, 27 Oct 2020 01:35:46 GMT" ], "Content-Length": [ "77" @@ -2005,21 +2074,21 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup2743?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNzQzP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup254?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAyNTQ/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36dbddd2-f30d-47f2-8bf0-8835bb63878c" + "65110698-fbe8-4bfa-811e-6ee7d2c838f9" ], "Accept-Language": [ "en-US" ], "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2031,7 +2100,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2040,13 +2109,13 @@ "14999" ], "x-ms-request-id": [ - "012d3649-0cf6-4c3d-a9ef-75c36e163498" + "4428d7b9-d7d0-4099-ab69-c445ffe30b95" ], "x-ms-correlation-request-id": [ - "012d3649-0cf6-4c3d-a9ef-75c36e163498" + "4428d7b9-d7d0-4099-ab69-c445ffe30b95" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014629Z:012d3649-0cf6-4c3d-a9ef-75c36e163498" + "WESTUS:20201027T013549Z:4428d7b9-d7d0-4099-ab69-c445ffe30b95" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2055,7 +2124,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:29 GMT" + "Tue, 27 Oct 2020 01:35:48 GMT" ], "Expires": [ "-1" @@ -2068,15 +2137,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2088,7 +2157,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2097,13 +2166,13 @@ "11999" ], "x-ms-request-id": [ - "fe0062b5-c24b-4073-8dda-28fd0b9cfa35" + "b44960b8-83ca-45c2-a8d3-a7e95a36e784" ], "x-ms-correlation-request-id": [ - "fe0062b5-c24b-4073-8dda-28fd0b9cfa35" + "b44960b8-83ca-45c2-a8d3-a7e95a36e784" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014645Z:fe0062b5-c24b-4073-8dda-28fd0b9cfa35" + "WESTUS:20201027T013604Z:b44960b8-83ca-45c2-a8d3-a7e95a36e784" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2112,7 +2181,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:44 GMT" + "Tue, 27 Oct 2020 01:36:03 GMT" ], "Expires": [ "-1" @@ -2125,15 +2194,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2145,7 +2214,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2154,13 +2223,13 @@ "11998" ], "x-ms-request-id": [ - "14931f41-4a74-4ac9-97fa-d98085fbf8bb" + "89ef650f-e976-43fc-86a7-6db21b59399d" ], "x-ms-correlation-request-id": [ - "14931f41-4a74-4ac9-97fa-d98085fbf8bb" + "89ef650f-e976-43fc-86a7-6db21b59399d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014700Z:14931f41-4a74-4ac9-97fa-d98085fbf8bb" + "WESTUS:20201027T013619Z:89ef650f-e976-43fc-86a7-6db21b59399d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2169,7 +2238,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:46:59 GMT" + "Tue, 27 Oct 2020 01:36:18 GMT" ], "Expires": [ "-1" @@ -2182,15 +2251,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2202,7 +2271,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2211,13 +2280,13 @@ "11997" ], "x-ms-request-id": [ - "ca2b8463-3651-4452-a687-60eded2108e4" + "8e36a95d-1141-46f9-b949-a090ed94788a" ], "x-ms-correlation-request-id": [ - "ca2b8463-3651-4452-a687-60eded2108e4" + "8e36a95d-1141-46f9-b949-a090ed94788a" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014715Z:ca2b8463-3651-4452-a687-60eded2108e4" + "WESTUS:20201027T013634Z:8e36a95d-1141-46f9-b949-a090ed94788a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2226,7 +2295,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:47:14 GMT" + "Tue, 27 Oct 2020 01:36:34 GMT" ], "Expires": [ "-1" @@ -2239,15 +2308,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2259,7 +2328,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2268,13 +2337,13 @@ "11996" ], "x-ms-request-id": [ - "8f9abf7b-cedf-48cc-b114-f686a161477f" + "cd7e0693-21fe-4b16-a533-7af697d75218" ], "x-ms-correlation-request-id": [ - "8f9abf7b-cedf-48cc-b114-f686a161477f" + "cd7e0693-21fe-4b16-a533-7af697d75218" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014730Z:8f9abf7b-cedf-48cc-b114-f686a161477f" + "WESTUS:20201027T013649Z:cd7e0693-21fe-4b16-a533-7af697d75218" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2283,7 +2352,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:47:29 GMT" + "Tue, 27 Oct 2020 01:36:49 GMT" ], "Expires": [ "-1" @@ -2296,15 +2365,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2316,7 +2385,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2325,13 +2394,13 @@ "11995" ], "x-ms-request-id": [ - "fa3070fb-5aa4-4acc-aae8-9f64a0471e68" + "666809cc-41e8-46cf-8f6c-683fa2ef772b" ], "x-ms-correlation-request-id": [ - "fa3070fb-5aa4-4acc-aae8-9f64a0471e68" + "666809cc-41e8-46cf-8f6c-683fa2ef772b" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014745Z:fa3070fb-5aa4-4acc-aae8-9f64a0471e68" + "WESTUS:20201027T013704Z:666809cc-41e8-46cf-8f6c-683fa2ef772b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2340,7 +2409,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:47:44 GMT" + "Tue, 27 Oct 2020 01:37:04 GMT" ], "Expires": [ "-1" @@ -2353,15 +2422,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2373,7 +2442,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2382,13 +2451,13 @@ "11994" ], "x-ms-request-id": [ - "f7b122a7-15f7-4100-bd31-396c86a64f44" + "8c3a3562-2a15-4ff0-a3a0-cf7a5ffe58b5" ], "x-ms-correlation-request-id": [ - "f7b122a7-15f7-4100-bd31-396c86a64f44" + "8c3a3562-2a15-4ff0-a3a0-cf7a5ffe58b5" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014800Z:f7b122a7-15f7-4100-bd31-396c86a64f44" + "WESTUS:20201027T013719Z:8c3a3562-2a15-4ff0-a3a0-cf7a5ffe58b5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2397,7 +2466,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:47:59 GMT" + "Tue, 27 Oct 2020 01:37:19 GMT" ], "Expires": [ "-1" @@ -2410,15 +2479,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2430,7 +2499,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2439,13 +2508,13 @@ "11993" ], "x-ms-request-id": [ - "f457e751-30c0-4a3a-acc3-ba8ad716115a" + "44e16281-ad48-427d-bf3f-8ec05799bd6d" ], "x-ms-correlation-request-id": [ - "f457e751-30c0-4a3a-acc3-ba8ad716115a" + "44e16281-ad48-427d-bf3f-8ec05799bd6d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014815Z:f457e751-30c0-4a3a-acc3-ba8ad716115a" + "WESTUS:20201027T013734Z:44e16281-ad48-427d-bf3f-8ec05799bd6d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2454,7 +2523,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:48:15 GMT" + "Tue, 27 Oct 2020 01:37:34 GMT" ], "Expires": [ "-1" @@ -2467,15 +2536,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2487,7 +2556,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2496,13 +2565,13 @@ "11992" ], "x-ms-request-id": [ - "f6259053-7e84-48c8-be53-c588b48c58d9" + "c13a5ec9-b9f6-4bdb-bce4-1889735f806c" ], "x-ms-correlation-request-id": [ - "f6259053-7e84-48c8-be53-c588b48c58d9" + "c13a5ec9-b9f6-4bdb-bce4-1889735f806c" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014830Z:f6259053-7e84-48c8-be53-c588b48c58d9" + "WESTUS:20201027T013750Z:c13a5ec9-b9f6-4bdb-bce4-1889735f806c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2511,7 +2580,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:48:30 GMT" + "Tue, 27 Oct 2020 01:37:49 GMT" ], "Expires": [ "-1" @@ -2524,15 +2593,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2544,7 +2613,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2553,13 +2622,13 @@ "11991" ], "x-ms-request-id": [ - "930abbd9-830a-4125-a33d-ba6e82d2d625" + "4d505a55-fdaa-418f-b810-7a7c5c040c31" ], "x-ms-correlation-request-id": [ - "930abbd9-830a-4125-a33d-ba6e82d2d625" + "4d505a55-fdaa-418f-b810-7a7c5c040c31" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014845Z:930abbd9-830a-4125-a33d-ba6e82d2d625" + "WESTUS:20201027T013805Z:4d505a55-fdaa-418f-b810-7a7c5c040c31" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2568,7 +2637,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:48:44 GMT" + "Tue, 27 Oct 2020 01:38:04 GMT" ], "Expires": [ "-1" @@ -2581,15 +2650,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2601,7 +2670,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2610,13 +2679,13 @@ "11990" ], "x-ms-request-id": [ - "2915e57f-eddf-46bc-a8b1-426926caa53f" + "5c659085-b251-4887-89e8-59edc1d5b079" ], "x-ms-correlation-request-id": [ - "2915e57f-eddf-46bc-a8b1-426926caa53f" + "5c659085-b251-4887-89e8-59edc1d5b079" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014900Z:2915e57f-eddf-46bc-a8b1-426926caa53f" + "WESTUS:20201027T013820Z:5c659085-b251-4887-89e8-59edc1d5b079" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2625,7 +2694,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:48:59 GMT" + "Tue, 27 Oct 2020 01:38:19 GMT" ], "Expires": [ "-1" @@ -2638,15 +2707,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2661,13 +2730,13 @@ "11989" ], "x-ms-request-id": [ - "59cbb9ae-0333-42cc-b09f-96caa7834b3d" + "2d75b43c-0d4c-4511-b0fe-e5a1b643fa1d" ], "x-ms-correlation-request-id": [ - "59cbb9ae-0333-42cc-b09f-96caa7834b3d" + "2d75b43c-0d4c-4511-b0fe-e5a1b643fa1d" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014915Z:59cbb9ae-0333-42cc-b09f-96caa7834b3d" + "WESTUS:20201027T013835Z:2d75b43c-0d4c-4511-b0fe-e5a1b643fa1d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2676,7 +2745,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:49:14 GMT" + "Tue, 27 Oct 2020 01:38:34 GMT" ], "Expires": [ "-1" @@ -2689,15 +2758,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjc0My1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNamMwTXkxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMjU0LVdFU1RVUyIsImpvYkxvY2F0aW9uIjoid2VzdHVzIn0?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNalUwTFZkRlUxUlZVeUlzSW1wdllreHZZMkYwYVc5dUlqb2lkMlZ6ZEhWekluMD9hcGktdmVyc2lvbj0yMDE1LTExLTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ - "FxVersion/4.6.29017.01", + "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20185.", + "OSVersion/Microsoft.Windows.10.0.20231.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2712,13 +2781,13 @@ "11988" ], "x-ms-request-id": [ - "9f355178-a928-4a31-b2c9-366dbd965700" + "b25891de-9fc6-495c-bc59-2cb72e7b9788" ], "x-ms-correlation-request-id": [ - "9f355178-a928-4a31-b2c9-366dbd965700" + "b25891de-9fc6-495c-bc59-2cb72e7b9788" ], "x-ms-routing-request-id": [ - "WESTUS:20200811T014915Z:9f355178-a928-4a31-b2c9-366dbd965700" + "WESTUS:20201027T013835Z:b25891de-9fc6-495c-bc59-2cb72e7b9788" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2727,7 +2796,7 @@ "nosniff" ], "Date": [ - "Tue, 11 Aug 2020 01:49:14 GMT" + "Tue, 27 Oct 2020 01:38:34 GMT" ], "Expires": [ "-1" @@ -2742,13 +2811,13 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup2743" + "cdnResourceGroup254" ], "WafPolicyLinkTest": [ - "policy4596", - "profile5754", - "endpoint5265", - "endpoint2890" + "policy8939", + "profile5456", + "endpoint1329", + "endpoint6578" ] }, "Variables": { From 0c5d39bd82c48f21dcd41abe2631f48b2f03feb2 Mon Sep 17 00:00:00 2001 From: Landon Smith Date: Fri, 13 Nov 2020 12:28:58 -0800 Subject: [PATCH 2/3] Add backwards-compatible constructor for CookiesMatchConditionParameters --- .../Models/CookiesMatchConditionParameters.cs | 36 +++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs new file mode 100644 index 0000000000000..2d11e5eacc4d9 --- /dev/null +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs @@ -0,0 +1,36 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using System.Collections.Generic; + +namespace Microsoft.Azure.Management.Cdn.Models +{ + + public partial class CookiesMatchConditionParameters + { + /// + /// Initializes a new instance of the CookiesMatchConditionParameters + /// class. + /// + /// Name of Cookies to be matched + /// Describes operator to be matched. + /// Possible values include: 'Any', 'Equal', 'Contains', 'BeginsWith', + /// 'EndsWith', 'LessThan', 'LessThanOrEqual', 'GreaterThan', + /// 'GreaterThanOrEqual' + /// The match value for the condition of the + /// delivery rule + /// Describes if this is negate condition + /// or not + /// List of transforms + public CookiesMatchConditionParameters(string selector = null, string operatorProperty = null, IList matchValues = null, bool? negateCondition = null, IList transforms = null) + { + Selector = selector; + OperatorProperty = operatorProperty; + NegateCondition = negateCondition; + MatchValues = matchValues; + Transforms = transforms; + CustomInit(); + } + } +} From 0c850108937b8fad67f63af64e77cc15789f843d Mon Sep 17 00:00:00 2001 From: Landon Smith Date: Tue, 8 Dec 2020 20:49:43 -0800 Subject: [PATCH 3/3] Add test for new CDN CookiesMatchConditionParameters constructor. Fix OriginUpdateTest. --- .../Models/CookiesMatchConditionParameters.cs | 9 +- .../src/generate.ps1 | 2 +- .../tests/ScenarioTests/EndpointTests.cs | 40 +- .../tests/ScenarioTests/OriginTests.cs | 2 +- .../OriginTests/OriginUpdateTest.json | 656 +++++++++--------- 5 files changed, 361 insertions(+), 348 deletions(-) diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs index 2d11e5eacc4d9..5ba5c64a98938 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/Customization/Models/CookiesMatchConditionParameters.cs @@ -24,13 +24,6 @@ public partial class CookiesMatchConditionParameters /// or not /// List of transforms public CookiesMatchConditionParameters(string selector = null, string operatorProperty = null, IList matchValues = null, bool? negateCondition = null, IList transforms = null) - { - Selector = selector; - OperatorProperty = operatorProperty; - NegateCondition = negateCondition; - MatchValues = matchValues; - Transforms = transforms; - CustomInit(); - } + : this(operatorProperty, selector, negateCondition, matchValues, transforms) { } } } diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/generate.ps1 b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/generate.ps1 index 90ad415f789f0..893ba0bf4bc1e 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/src/generate.ps1 +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/src/generate.ps1 @@ -1 +1 @@ -Start-AutoRestCodeGeneration -ResourceProvider "cdn/resource-manager" -AutoRestVersion "v2" -ConfigFileTag "package-2020-04" +Start-AutoRestCodeGeneration -ResourceProvider "cdn/resource-manager" -AutoRestVersion "v3" -ConfigFileTag "package-2020-04" diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/EndpointTests.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/EndpointTests.cs index a58fc81d6e763..3955faff74132 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/EndpointTests.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/EndpointTests.cs @@ -101,7 +101,7 @@ public void EndpointCreateTest() IsHttpAllowed = true, IsHttpsAllowed = true, IsCompressionEnabled = true, - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", OriginPath = "/photos", QueryStringCachingBehavior = QueryStringCachingBehavior.BypassCaching, ContentTypesToCompress = new List { "text/html", "application/octet-stream" }, @@ -143,7 +143,16 @@ public void EndpointCreateTest() OperatorProperty = "Equal", MatchValues = new List {"abc"} } - } + }, + new DeliveryRuleCookiesCondition( + new CookiesMatchConditionParameters( + "ExampleCookie", + "Contains", + new List { "search-value" }, + true, + new List { "Lowercase" } + ) + ) } } } @@ -152,6 +161,17 @@ public void EndpointCreateTest() endpoint = cdnMgmtClient.Endpoints.Create(resourceGroupName, profileName, endpointName, endpointCreateParameters); Assert.NotNull(endpoint); + Assert.Equal(1, endpoint.DeliveryPolicy.Rules.Count); + Assert.Equal(2, endpoint.DeliveryPolicy.Rules[0].Conditions.Count); + var cookiesCondition = endpoint.DeliveryPolicy.Rules[0].Conditions[1] as DeliveryRuleCookiesCondition; + var cookiesParams = cookiesCondition.Parameters; + Assert.Equal("ExampleCookie", cookiesParams.Selector); + Assert.Equal("Contains", cookiesParams.OperatorProperty); + Assert.Equal(1, cookiesParams.MatchValues.Count); + Assert.Contains("search-value", cookiesParams.MatchValues); + Assert.True(cookiesParams.NegateCondition); + Assert.Equal(1, cookiesParams.Transforms.Count); + Assert.Contains("Lowercase", cookiesParams.Transforms); // Create a cdn endpoint with DSA should succeed endpointName = TestUtilities.GenerateName("endpoint"); @@ -318,7 +338,7 @@ public void EndpointCreateTest() IsHttpAllowed = true, IsHttpsAllowed = true, IsCompressionEnabled = true, - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", OriginPath = "/photos", QueryStringCachingBehavior = QueryStringCachingBehavior.BypassCaching, ContentTypesToCompress = new List { "text/html", "application/octet-stream" }, @@ -337,7 +357,7 @@ public void EndpointCreateTest() IsHttpAllowed = false, IsHttpsAllowed = false, IsCompressionEnabled = true, - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", OriginPath = "/photos", QueryStringCachingBehavior = QueryStringCachingBehavior.BypassCaching, ContentTypesToCompress = new List { "text/html", "application/octet-stream" }, @@ -407,7 +427,7 @@ public void EndpointUpdateTest() { IsHttpAllowed = false, OriginPath = "\\&123invalid_path/.", - OriginHostHeader = "www.bing.com" + OriginHostHeader = "www.azurecdntest.com" }; Assert.ThrowsAny(() => { @@ -419,7 +439,7 @@ public void EndpointUpdateTest() { IsHttpAllowed = false, OriginPath = "/path/valid", - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", IsCompressionEnabled = true, QueryStringCachingBehavior = QueryStringCachingBehavior.IgnoreQueryString }; @@ -433,7 +453,7 @@ public void EndpointUpdateTest() { IsHttpAllowed = false, OriginPath = "/path/valid", - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", IsCompressionEnabled = true, QueryStringCachingBehavior = QueryStringCachingBehavior.IgnoreQueryString, GeoFilters = new List @@ -521,7 +541,7 @@ public void EndpointUpdateTest() { IsHttpAllowed = false, OriginPath = "/path/valid", - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", IsCompressionEnabled = true, ContentTypesToCompress = new List { "text/html", "application/octet-stream" }, QueryStringCachingBehavior = QueryStringCachingBehavior.IgnoreQueryString, @@ -569,7 +589,7 @@ public void EndpointUpdateTest() endpointUpdateParameters = new EndpointUpdateParameters { IsHttpAllowed = false, - OriginHostHeader = "www.bing.com" + OriginHostHeader = "www.azurecdntest.com" }; Assert.ThrowsAny(() => { @@ -908,7 +928,7 @@ public void EndpointPurgeLoadTest() IsHttpAllowed = true, IsHttpsAllowed = true, IsCompressionEnabled = true, - OriginHostHeader = "www.bing.com", + OriginHostHeader = "www.azurecdntest.com", OriginPath = "/photos", QueryStringCachingBehavior = QueryStringCachingBehavior.IgnoreQueryString, ContentTypesToCompress = new List { "text/html", "text/css" }, diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/OriginTests.cs b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/OriginTests.cs index 997323e5fd299..d3ef59101ae72 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/OriginTests.cs +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/ScenarioTests/OriginTests.cs @@ -100,7 +100,7 @@ public void OriginUpdateTest() // Update origin on running endpoint should succeed var originParameters = new OriginUpdateParameters { - HostName = "www.bing.com", + HostName = "www.azurecdntest.com", HttpPort = 1234, HttpsPort = 8081, PrivateLinkLocation = "EastUS", diff --git a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json index 13bf3f3a2bfb7..b9ba7597ef16e 100644 --- a/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json +++ b/sdk/cdn/Microsoft.Azure.Management.Cdn/tests/SessionRecords/OriginTests/OriginUpdateTest.json @@ -1,13 +1,13 @@ { "Entries": [ { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "PUT", "RequestBody": "{\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "9a61a372-d875-48aa-972a-bd80fe26ade3" + "6450c5e8-19d4-419c-9ab4-8e6c272dd79c" ], "Accept-Language": [ "en-US" @@ -15,7 +15,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ], "Content-Type": [ @@ -36,13 +36,13 @@ "1199" ], "x-ms-request-id": [ - "54d7dcdc-8659-41f4-8aec-4fc89c3c424b" + "804563d8-40bc-42ad-afa2-890c6b525090" ], "x-ms-correlation-request-id": [ - "54d7dcdc-8659-41f4-8aec-4fc89c3c424b" + "804563d8-40bc-42ad-afa2-890c6b525090" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014700Z:54d7dcdc-8659-41f4-8aec-4fc89c3c424b" + "WESTUS:20201209T042019Z:804563d8-40bc-42ad-afa2-890c6b525090" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -51,7 +51,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:00 GMT" + "Wed, 09 Dec 2020 04:20:19 GMT" ], "Content-Length": [ "193" @@ -63,17 +63,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520\",\r\n \"name\": \"cdnResourceGroup7520\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419\",\r\n \"name\": \"cdnResourceGroup1419\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "PUT", "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": { "x-ms-client-request-id": [ - "dd85643e-db95-418d-9a35-b0438b630d72" + "c7f35553-609f-4525-bf38-d12fda0a754e" ], "Accept-Language": [ "en-US" @@ -81,7 +81,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ @@ -102,13 +102,13 @@ "10" ], "x-ms-request-id": [ - "05741d9b-5ca3-4e9b-97a9-01eab72dcb56" + "8ff02510-9e13-4d0d-ba0e-da98312805a8" ], "x-ms-client-request-id": [ - "dd85643e-db95-418d-9a35-b0438b630d72" + "c7f35553-609f-4525-bf38-d12fda0a754e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/5dd451bf-deab-46f4-8c9f-073f9eb45d12?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/76812ba2-2983-4cb7-a24b-6ae10dff1387?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -129,16 +129,16 @@ "24" ], "x-ms-correlation-request-id": [ - "9b800acb-a477-4388-87b4-2dcb5c6b60f3" + "08b0e478-6eb3-47ec-9fcb-6407d7c638cc" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014704Z:9b800acb-a477-4388-87b4-2dcb5c6b60f3" + "WESTUS:20201209T042025Z:08b0e478-6eb3-47ec-9fcb-6407d7c638cc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:03 GMT" + "Wed, 09 Dec 2020 04:20:25 GMT" ], "Content-Length": [ "400" @@ -150,19 +150,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1615\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/5dd451bf-deab-46f4-8c9f-073f9eb45d12?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNWRkNDUxYmYtZGVhYi00NmY0LThjOWYtMDczZjllYjQ1ZDEyP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/76812ba2-2983-4cb7-a24b-6ae10dff1387?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNzY4MTJiYTItMjk4My00Y2I3LWEyNGItNmFlMTBkZmYxMzg3P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -174,10 +174,10 @@ "no-cache" ], "x-ms-request-id": [ - "c0ba4f8e-6c3a-4fc6-85c4-09a48d7dde4a" + "ac12ed97-736b-469d-adaf-d66158f29545" ], "x-ms-client-request-id": [ - "92475e26-da12-4796-9c0b-ae79e14d220d" + "32431825-9506-4a54-9a09-6ee3190791f7" ], "OData-Version": [ "4.0" @@ -198,16 +198,16 @@ "11999" ], "x-ms-correlation-request-id": [ - "585a8d74-4de0-4839-8699-944216eeb7b6" + "c37bbf78-00c3-43a8-9789-ed4db3e2aa18" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014714Z:585a8d74-4de0-4839-8699-944216eeb7b6" + "WESTUS:20201209T042035Z:c37bbf78-00c3-43a8-9789-ed4db3e2aa18" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:13 GMT" + "Wed, 09 Dec 2020 04:20:35 GMT" ], "Content-Length": [ "77" @@ -223,15 +223,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -243,10 +243,10 @@ "no-cache" ], "x-ms-request-id": [ - "f79b28fb-3a9a-4add-a960-d538dadef8f3" + "bc3e167d-c3bd-485c-a6e1-3f4433f33a68" ], "x-ms-client-request-id": [ - "1b4cfeb0-aec9-42df-9385-a05e10f96fc0" + "2a114a3b-1e74-4cc2-b973-3d525ce9e926" ], "OData-Version": [ "4.0" @@ -267,16 +267,16 @@ "49" ], "x-ms-correlation-request-id": [ - "606d020b-ec09-40ef-aca7-e193cec67c57" + "fe763915-552c-4eab-8c82-7e4166291256" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014715Z:606d020b-ec09-40ef-aca7-e193cec67c57" + "WESTUS:20201209T042036Z:fe763915-552c-4eab-8c82-7e4166291256" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:14 GMT" + "Wed, 09 Dec 2020 04:20:36 GMT" ], "Content-Length": [ "399" @@ -288,17 +288,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"profile1615\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615\",\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}", + "ResponseBody": "{\r\n \"name\": \"profile8939\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939\",\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/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probePath\": \"/healthz\",\r\n \"probeRequestType\": \"HEAD\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeIntervalInSeconds\": 60\r\n },\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"isHttpAllowed\": true,\r\n \"isHttpsAllowed\": true,\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/originGroups/origingroup1\"\r\n },\r\n \"origins\": [\r\n {\r\n \"name\": \"origin1\",\r\n \"properties\": {\r\n \"hostName\": \"host1.hello.com\",\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probePath\": \"/healthz\",\r\n \"probeRequestType\": \"HEAD\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeIntervalInSeconds\": 60\r\n },\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ]\r\n },\r\n \"location\": \"WestUs\"\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "e0187d7c-975c-4ee3-8745-f71733369d82" + "94e63880-7ca8-41d4-a4a9-edff46c9d51e" ], "Accept-Language": [ "en-US" @@ -306,14 +306,14 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1418" + "1416" ] }, "ResponseHeaders": { @@ -327,13 +327,13 @@ "10" ], "x-ms-request-id": [ - "b564ef02-9b7d-4a8a-982e-2a8d1d616154" + "0c2c02ce-8ef2-4dca-aad0-152c64506e05" ], "x-ms-client-request-id": [ - "e0187d7c-975c-4ee3-8745-f71733369d82" + "94e63880-7ca8-41d4-a4a9-edff46c9d51e" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4bdf0982-f006-45c4-a642-543872adfd05?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -354,19 +354,19 @@ "99" ], "x-ms-correlation-request-id": [ - "826cad11-83bd-414c-95a1-666d432ea0b5" + "69b974be-71dc-4f44-b9d4-38b80f2d4324" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014720Z:826cad11-83bd-414c-95a1-666d432ea0b5" + "WESTUS:20201209T042041Z:69b974be-71dc-4f44-b9d4-38b80f2d4324" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:19 GMT" + "Wed, 09 Dec 2020 04:20:41 GMT" ], "Content-Length": [ - "2173" + "2168" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -375,19 +375,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint869\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint869.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 201 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4bdf0982-f006-45c4-a642-543872adfd05?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGJkZjA5ODItZjAwNi00NWM0LWE2NDItNTQzODcyYWRmZDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -399,10 +399,10 @@ "no-cache" ], "x-ms-request-id": [ - "de032bb2-6aaa-4a7f-98eb-59601ce5e852" + "f01f610d-ca29-4d99-9aac-ed3570767507" ], "x-ms-client-request-id": [ - "685424e1-0809-4559-896c-717313c514b1" + "1f780aca-4c29-4ce3-a960-1ef0a43a750a" ], "OData-Version": [ "4.0" @@ -423,16 +423,16 @@ "11998" ], "x-ms-correlation-request-id": [ - "56044ef2-d4b3-41d1-8190-06112ca0661c" + "81989aff-5b62-41ae-9fe8-37daf927f6dc" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014730Z:56044ef2-d4b3-41d1-8190-06112ca0661c" + "WESTUS:20201209T042051Z:81989aff-5b62-41ae-9fe8-37daf927f6dc" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:30 GMT" + "Wed, 09 Dec 2020 04:20:51 GMT" ], "Content-Length": [ "78" @@ -448,15 +448,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4bdf0982-f006-45c4-a642-543872adfd05?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGJkZjA5ODItZjAwNi00NWM0LWE2NDItNTQzODcyYWRmZDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -468,10 +468,10 @@ "no-cache" ], "x-ms-request-id": [ - "b3b71a05-8d54-4035-9357-db25c22c306c" + "2beb8e45-b642-4062-9947-65b1f0c0e2ba" ], "x-ms-client-request-id": [ - "4d8fbfb2-7af3-41d0-a373-7477629d2ccd" + "e8f67a8f-4bb8-4c06-9432-8aa2bb2d021a" ], "OData-Version": [ "4.0" @@ -492,16 +492,16 @@ "11997" ], "x-ms-correlation-request-id": [ - "186580f1-d9e8-4f74-90ad-07bd690fbc8e" + "4e671929-b80d-4f9e-89b1-a3f5e57efe47" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014740Z:186580f1-d9e8-4f74-90ad-07bd690fbc8e" + "WESTUS:20201209T042102Z:4e671929-b80d-4f9e-89b1-a3f5e57efe47" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:40 GMT" + "Wed, 09 Dec 2020 04:21:02 GMT" ], "Content-Length": [ "78" @@ -517,15 +517,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/2b04cbe6-d00f-4995-a2d5-35eb8793aecb?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMmIwNGNiZTYtZDAwZi00OTk1LWEyZDUtMzVlYjg3OTNhZWNiP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4bdf0982-f006-45c4-a642-543872adfd05?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNGJkZjA5ODItZjAwNi00NWM0LWE2NDItNTQzODcyYWRmZDA1P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -537,10 +537,10 @@ "no-cache" ], "x-ms-request-id": [ - "b80e68bf-bf17-4f3b-9214-46d8cbf13b42" + "efadedd6-3a80-481f-b28a-8e8b661ec426" ], "x-ms-client-request-id": [ - "8d6db104-c511-4a6a-8f3a-f46b3a5a1957" + "a36dae28-ec34-42e3-a7ba-164706eaa1b4" ], "OData-Version": [ "4.0" @@ -561,16 +561,16 @@ "11996" ], "x-ms-correlation-request-id": [ - "6c099fb0-0d6c-4f76-9186-b15713f08d66" + "f8329493-e922-451d-a73a-239265194365" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014751Z:6c099fb0-0d6c-4f76-9186-b15713f08d66" + "WESTUS:20201209T042112Z:f8329493-e922-451d-a73a-239265194365" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:51 GMT" + "Wed, 09 Dec 2020 04:21:12 GMT" ], "Content-Length": [ "77" @@ -586,15 +586,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -606,10 +606,10 @@ "no-cache" ], "x-ms-request-id": [ - "9cc61d6d-8d92-4465-8c6f-fb16ea9e31a9" + "d039fad9-d975-4d16-9fa7-538e51d2a0a0" ], "x-ms-client-request-id": [ - "7115140b-9961-4925-9346-afbce04aa664" + "5a7b9836-683e-404e-8604-c5a152cb0f3b" ], "OData-Version": [ "4.0" @@ -630,19 +630,19 @@ "49" ], "x-ms-correlation-request-id": [ - "64101995-cafb-4410-ba1c-2ddb900138b1" + "ff360c9d-22d1-4ad8-9046-666e23ffec19" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014752Z:64101995-cafb-4410-ba1c-2ddb900138b1" + "WESTUS:20201209T042113Z:ff360c9d-22d1-4ad8-9046-666e23ffec19" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:52 GMT" + "Wed, 09 Dec 2020 04:21:13 GMT" ], "Content-Length": [ - "2173" + "2168" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -651,17 +651,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint869\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint869.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 \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-3\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"www.azurecdntest.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "faabf232-b85b-4930-ae3f-dcbcdf0a5d1e" + "aaab2c8a-d733-4943-8122-0987ffc7e8d7" ], "Accept-Language": [ "en-US" @@ -669,14 +669,14 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "380" + "388" ] }, "ResponseHeaders": { @@ -687,19 +687,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028/profileresults/profile1615/endpointresults/endpoint3897/originresults/origin1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/8df61e84-0054-4bb7-b1df-eb95cc708f06/profileresults/profile8939/endpointresults/endpoint869/originresults/origin1?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "05ba593e-aaeb-4c22-b0df-28c3c578f9df" + "c3a9371c-eb70-4a34-af12-0b47cff6de5a" ], "x-ms-client-request-id": [ - "faabf232-b85b-4930-ae3f-dcbcdf0a5d1e" + "aaab2c8a-d733-4943-8122-0987ffc7e8d7" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/8df61e84-0054-4bb7-b1df-eb95cc708f06?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -720,19 +720,19 @@ "1199" ], "x-ms-correlation-request-id": [ - "ec68eab6-59c8-4459-8d45-11be77380365" + "1d655d93-3649-4719-b1e6-be1d3d72fd39" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014755Z:ec68eab6-59c8-4459-8d45-11be77380365" + "WESTUS:20201209T042116Z:1d655d93-3649-4719-b1e6-be1d3d72fd39" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:47:54 GMT" + "Wed, 09 Dec 2020 04:21:16 GMT" ], "Content-Length": [ - "764" + "771" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -741,17 +741,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.azurecdntest.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"invalid!Hostname&\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "1c6cc960-fbc7-43fc-bc58-31c53e245e12" + "cbc1ffdf-0c0e-42e4-810a-d9411c8cc280" ], "Accept-Language": [ "en-US" @@ -759,7 +759,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ @@ -777,10 +777,10 @@ "no-cache" ], "x-ms-request-id": [ - "0b33e497-9042-4669-a96d-70436fe6f3f0" + "f176fd3f-df91-479d-b1d1-208b2fa8ae7c" ], "x-ms-client-request-id": [ - "1c6cc960-fbc7-43fc-bc58-31c53e245e12" + "cbc1ffdf-0c0e-42e4-810a-d9411c8cc280" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -798,16 +798,16 @@ "1198" ], "x-ms-correlation-request-id": [ - "22bb34e5-8444-45b9-832c-72f86eb15876" + "4052f762-320b-4182-90af-9957cf20b87c" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014816Z:22bb34e5-8444-45b9-832c-72f86eb15876" + "WESTUS:20201209T042138Z:4052f762-320b-4182-90af-9957cf20b87c" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:16 GMT" + "Wed, 09 Dec 2020 04:21:37 GMT" ], "Content-Length": [ "174" @@ -826,13 +826,13 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "2604d6b9-38c4-4981-ba92-5befc2c67b75" + "db6c97aa-2bdd-45c2-bffc-9fc0a4186471" ], "Accept-Language": [ "en-US" @@ -840,7 +840,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ @@ -858,19 +858,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339/profileresults/profile1615/endpointresults/endpoint3897/originresults/origin1?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/d43f402e-4034-493c-8caa-76db05ad4f0c/profileresults/profile8939/endpointresults/endpoint869/originresults/origin1?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "312f77fd-4bb2-4821-826b-3ac3b04ce9c0" + "25f401e7-4505-461d-b2d6-120c2345305d" ], "x-ms-client-request-id": [ - "2604d6b9-38c4-4981-ba92-5befc2c67b75" + "db6c97aa-2bdd-45c2-bffc-9fc0a4186471" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/d43f402e-4034-493c-8caa-76db05ad4f0c?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -891,19 +891,19 @@ "1197" ], "x-ms-correlation-request-id": [ - "31d026bf-7aa0-481a-903f-b7a57eb321c2" + "b4fd4a41-1f79-4309-b587-122774ad2fe3" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014842Z:31d026bf-7aa0-481a-903f-b7a57eb321c2" + "WESTUS:20201209T042204Z:b4fd4a41-1f79-4309-b587-122774ad2fe3" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:41 GMT" + "Wed, 09 Dec 2020 04:22:03 GMT" ], "Content-Length": [ - "765" + "764" ], "Content-Type": [ "application/json; odata.metadata=minimal" @@ -912,17 +912,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "PATCH", "RequestBody": "{\r\n \"properties\": {\r\n \"httpPort\": 99999,\r\n \"httpsPort\": -2000\r\n }\r\n}", "RequestHeaders": { "x-ms-client-request-id": [ - "32ade449-c571-4f94-bb10-368967cef92c" + "8fe4294d-6d08-461d-8151-3568d539cddf" ], "Accept-Language": [ "en-US" @@ -930,7 +930,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ], "Content-Type": [ @@ -948,10 +948,10 @@ "no-cache" ], "x-ms-request-id": [ - "6c58d18b-3dae-45e4-ba3f-ab9d5634f413" + "638188eb-a011-4b3b-9ccd-50c078d20078" ], "x-ms-client-request-id": [ - "32ade449-c571-4f94-bb10-368967cef92c" + "8fe4294d-6d08-461d-8151-3568d539cddf" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -969,16 +969,16 @@ "1196" ], "x-ms-correlation-request-id": [ - "ad42e193-d047-471a-b8f3-4eb5c7f015d8" + "c6338af5-f01b-49a5-9022-a3d335e610dd" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014903Z:ad42e193-d047-471a-b8f3-4eb5c7f015d8" + "WESTUS:20201209T042225Z:c6338af5-f01b-49a5-9022-a3d335e610dd" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:03 GMT" + "Wed, 09 Dec 2020 04:22:25 GMT" ], "Content-Length": [ "270" @@ -997,15 +997,15 @@ "StatusCode": 400 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzgwOWE3MzQtYzBhOC00MmVlLWFlMjMtZTFjMWYwNzkzMDI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/8df61e84-0054-4bb7-b1df-eb95cc708f06?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGRmNjFlODQtMDA1NC00YmI3LWIxZGYtZWI5NWNjNzA4ZjA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1017,10 +1017,10 @@ "no-cache" ], "x-ms-request-id": [ - "9916585f-2bb1-43a9-aef2-ccd249cb5eb8" + "c14f8b4d-ceb6-4532-8e36-81e7f9ebeb39" ], "x-ms-client-request-id": [ - "29d0141d-f66c-408b-ba69-61d1252bcecd" + "b5319057-a99c-47c9-9822-e466d71038ec" ], "OData-Version": [ "4.0" @@ -1041,16 +1041,16 @@ "11995" ], "x-ms-correlation-request-id": [ - "ca2bf153-85ce-4b8e-a9f4-d0c78a1f0b83" + "00185906-3280-4a16-a24a-372fa39b29c6" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014805Z:ca2bf153-85ce-4b8e-a9f4-d0c78a1f0b83" + "WESTUS:20201209T042126Z:00185906-3280-4a16-a24a-372fa39b29c6" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:05 GMT" + "Wed, 09 Dec 2020 04:21:26 GMT" ], "Content-Length": [ "78" @@ -1066,15 +1066,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/3809a734-c0a8-42ee-ae23-e1c1f0793028?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvMzgwOWE3MzQtYzBhOC00MmVlLWFlMjMtZTFjMWYwNzkzMDI4P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/8df61e84-0054-4bb7-b1df-eb95cc708f06?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvOGRmNjFlODQtMDA1NC00YmI3LWIxZGYtZWI5NWNjNzA4ZjA2P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1086,10 +1086,10 @@ "no-cache" ], "x-ms-request-id": [ - "0324b034-4ae7-40e6-9599-12ea36f5e9d9" + "f7695abc-b9fd-432d-a20b-7437cbe3aa2c" ], "x-ms-client-request-id": [ - "41a910fe-6541-4b76-8ef8-df6b2082f00b" + "aaa637e8-4351-4c1d-b543-6c182018155a" ], "OData-Version": [ "4.0" @@ -1110,16 +1110,16 @@ "11994" ], "x-ms-correlation-request-id": [ - "3acd5ab2-0743-471c-a9f7-8447a0de948a" + "32aebec2-dc7c-449b-8ff2-8fe1c0c08aa9" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014815Z:3acd5ab2-0743-471c-a9f7-8447a0de948a" + "WESTUS:20201209T042137Z:32aebec2-dc7c-449b-8ff2-8fe1c0c08aa9" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:15 GMT" + "Wed, 09 Dec 2020 04:21:36 GMT" ], "Content-Length": [ "77" @@ -1135,15 +1135,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1155,10 +1155,10 @@ "no-cache" ], "x-ms-request-id": [ - "ffc72390-0d8f-4005-9385-50414d73d2f3" + "a33111c3-e6a0-436c-87fe-1c531c17bb7e" ], "x-ms-client-request-id": [ - "24ff58a4-b9a3-4952-930d-12d3016bcbb3" + "fe481781-7966-4f77-b693-43862d417922" ], "OData-Version": [ "4.0" @@ -1179,19 +1179,19 @@ "11993" ], "x-ms-correlation-request-id": [ - "ab77967a-efdc-4430-b5c7-2bf055229c68" + "1243fbc3-f970-4271-b1c9-b76b6f3b74bb" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014816Z:ab77967a-efdc-4430-b5c7-2bf055229c68" + "WESTUS:20201209T042137Z:1243fbc3-f970-4271-b1c9-b76b6f3b74bb" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:16 GMT" + "Wed, 09 Dec 2020 04:21:37 GMT" ], "Content-Length": [ - "764" + "771" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1200,19 +1200,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.azurecdntest.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvb3JpZ2lucy9vcmlnaW4xP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9vcmlnaW5zL29yaWdpbjE/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1224,10 +1224,10 @@ "no-cache" ], "x-ms-request-id": [ - "3a770adb-b8e2-4ca0-9d28-4c29bc43f86c" + "a81ab54f-6c60-4a1f-9875-83a4f7da0c4c" ], "x-ms-client-request-id": [ - "60d257a7-539c-415a-bfcb-c456c51276e4" + "9d046c17-c94e-4a1f-af10-14a66a430b00" ], "OData-Version": [ "4.0" @@ -1248,19 +1248,19 @@ "11987" ], "x-ms-correlation-request-id": [ - "76d2bc45-4c8d-4a52-9c11-957721fbe3f5" + "6596ec26-ac1e-4882-9cdb-ea2b536813ae" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014903Z:76d2bc45-4c8d-4a52-9c11-957721fbe3f5" + "WESTUS:20201209T042225Z:6596ec26-ac1e-4882-9cdb-ea2b536813ae" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:02 GMT" + "Wed, 09 Dec 2020 04:22:24 GMT" ], "Content-Length": [ - "765" + "764" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1269,17 +1269,17 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"origin1\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\",\r\n \"type\": \"Microsoft.Cdn/profiles/endpoints/origins\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceState\": \"Active\",\r\n \"hostName\": \"www.hello.com\",\r\n \"httpPort\": 1265,\r\n \"httpsPort\": 8081,\r\n \"enabled\": true,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"originHostHeader\": null,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/stop?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cy9lbmRwb2ludDM4OTcvc3RvcD9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourceGroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/stop?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlR3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL3Byb2ZpbGVzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cy9lbmRwb2ludDg2OS9zdG9wP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "POST", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0a58cd46-08bb-4fe9-bc9a-7ecc7d8b6219" + "735fd8cb-1911-4b75-8c0f-91ee2596a4fd" ], "Accept-Language": [ "en-US" @@ -1287,7 +1287,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1299,19 +1299,19 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9/profileresults/profile8939/endpointresults/endpoint869?api-version=2020-04-15" ], "Retry-After": [ "10" ], "x-ms-request-id": [ - "82bd0058-ff4d-446f-af9e-d38275d9fb66" + "9fdc24f7-7d47-4985-a85f-171cc4209246" ], "x-ms-client-request-id": [ - "0a58cd46-08bb-4fe9-bc9a-7ecc7d8b6219" + "735fd8cb-1911-4b75-8c0f-91ee2596a4fd" ], "Azure-AsyncOperation": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9?api-version=2020-04-15" ], "OData-Version": [ "4.0" @@ -1332,19 +1332,19 @@ "49" ], "x-ms-correlation-request-id": [ - "75adf027-72bf-43ad-bde2-028c74ac8cbd" + "b54a247c-0c2e-4deb-9415-f92f32e7dd43" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014818Z:75adf027-72bf-43ad-bde2-028c74ac8cbd" + "WESTUS:20201209T042140Z:b54a247c-0c2e-4deb-9415-f92f32e7dd43" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:18 GMT" + "Wed, 09 Dec 2020 04:21:39 GMT" ], "Content-Length": [ - "1830" + "1835" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1353,19 +1353,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"hostName\": \"endpoint3897.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", + "ResponseBody": "{\r\n \"hostName\": \"endpoint869.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\": \"www.azurecdntest.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n}", "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDg1NzcxOWUtODA0MS00ZTA3LWEzZjctNDA5N2EzMWJlM2Q5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1377,10 +1377,10 @@ "no-cache" ], "x-ms-request-id": [ - "5d0288ed-68e7-4bd5-971d-dfbd282c0418" + "8dd4a575-50ca-42f7-847d-67d177a0d804" ], "x-ms-client-request-id": [ - "36937000-072b-4feb-b6ce-1780d101e010" + "e000120f-784d-4ad2-8868-76656723834a" ], "OData-Version": [ "4.0" @@ -1401,16 +1401,16 @@ "11992" ], "x-ms-correlation-request-id": [ - "d794c883-d019-4347-a84f-68513f9b0b82" + "130ae14f-699c-4105-99df-0596933e9a05" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014829Z:d794c883-d019-4347-a84f-68513f9b0b82" + "WESTUS:20201209T042150Z:130ae14f-699c-4105-99df-0596933e9a05" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:28 GMT" + "Wed, 09 Dec 2020 04:21:49 GMT" ], "Content-Length": [ "78" @@ -1426,15 +1426,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDg1NzcxOWUtODA0MS00ZTA3LWEzZjctNDA5N2EzMWJlM2Q5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1446,10 +1446,10 @@ "no-cache" ], "x-ms-request-id": [ - "37eab913-6bef-4bd8-b34d-2e1df3c53eec" + "c2323b5b-0870-4f84-9b44-6a25bdbf93ea" ], "x-ms-client-request-id": [ - "74033c4f-7e34-42ab-bee4-5ca9950d15b7" + "10ee5a1d-2c00-4160-b4de-2e7e58391e87" ], "OData-Version": [ "4.0" @@ -1470,16 +1470,16 @@ "11991" ], "x-ms-correlation-request-id": [ - "a841b3e3-d913-4387-8892-f0315aea9550" + "9965dd48-26c1-48d4-bb63-8e060a8f02da" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014839Z:a841b3e3-d913-4387-8892-f0315aea9550" + "WESTUS:20201209T042200Z:9965dd48-26c1-48d4-bb63-8e060a8f02da" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:38 GMT" + "Wed, 09 Dec 2020 04:22:00 GMT" ], "Content-Length": [ "77" @@ -1495,15 +1495,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDA5NDJkOTAtNmYyNS00MmM5LWJkYTctZGI5YjcwOTQwYTJjL3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGUxNjE1L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDM4OTc/YXBpLXZlcnNpb249MjAyMC0wNC0xNQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9/profileresults/profile8939/endpointresults/endpoint869?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNDg1NzcxOWUtODA0MS00ZTA3LWEzZjctNDA5N2EzMWJlM2Q5L3Byb2ZpbGVyZXN1bHRzL3Byb2ZpbGU4OTM5L2VuZHBvaW50cmVzdWx0cy9lbmRwb2ludDg2OT9hcGktdmVyc2lvbj0yMDIwLTA0LTE1", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1515,10 +1515,10 @@ "no-cache" ], "x-ms-request-id": [ - "840a1048-fd37-4f56-9da0-6976a0771a88" + "42ea4a23-2268-4471-86be-a946a4c524ad" ], "x-ms-client-request-id": [ - "394e4e80-780f-40d9-b448-fe9e2e6535ec" + "b00edd87-b963-45fc-9948-9e340d166b5d" ], "OData-Version": [ "4.0" @@ -1539,19 +1539,19 @@ "11990" ], "x-ms-correlation-request-id": [ - "09ef80b2-80aa-4a4b-b2d4-c1f42a8e439e" + "03281221-5325-4a7b-845f-94c39d594369" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014840Z:09ef80b2-80aa-4a4b-b2d4-c1f42a8e439e" + "WESTUS:20201209T042201Z:03281221-5325-4a7b-845f-94c39d594369" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:39 GMT" + "Wed, 09 Dec 2020 04:22:01 GMT" ], "Content-Length": [ - "2272" + "2275" ], "Content-Type": [ "application/json; odata.metadata=minimal; odata.streaming=true" @@ -1560,19 +1560,19 @@ "-1" ] }, - "ResponseBody": "{\r\n \"name\": \"endpoint3897\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/40942d90-6f25-42c9-bda7-db9b70940a2c/profileresults/profile1615/endpointresults/endpoint3897\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint3897.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\": \"www.bing.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/profiles/profile1615/endpoints/endpoint3897/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", + "ResponseBody": "{\r\n \"name\": \"endpoint869\",\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/4857719e-8041-4e07-a3f7-4097a31be3d9/profileresults/profile8939/endpointresults/endpoint869\",\r\n \"type\": \"Microsoft.Cdn/operationresults/profileresults/endpointresults\",\r\n \"tags\": {},\r\n \"location\": \"WestUs\",\r\n \"properties\": {\r\n \"hostName\": \"endpoint869.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\": \"www.azurecdntest.com\",\r\n \"httpPort\": 1234,\r\n \"httpsPort\": 8081,\r\n \"originHostHeader\": null,\r\n \"priority\": 5,\r\n \"weight\": 100,\r\n \"enabled\": true,\r\n \"privateLinkResourceId\": \"/subscriptions/da61bba1-cbd5-438c-a738-c717a6b2d59f/resourceGroups/moeidrg/providers/Microsoft.Network/privateLinkServices/pls-east-2\",\r\n \"privateLinkLocation\": \"EastUS\",\r\n \"privateLinkAlias\": null,\r\n \"privateEndpointStatus\": null,\r\n \"privateLinkApprovalMessage\": \"This is a test update request\"\r\n }\r\n }\r\n ],\r\n \"originGroups\": [\r\n {\r\n \"name\": \"origingroup1\",\r\n \"properties\": {\r\n \"healthProbeSettings\": {\r\n \"probeIntervalInSeconds\": 60,\r\n \"probePath\": \"/healthz\",\r\n \"probeProtocol\": \"Https\",\r\n \"probeRequestType\": \"HEAD\"\r\n },\r\n \"responseBasedOriginErrorDetectionSettings\": null,\r\n \"trafficRestorationTimeToHealedOrNewEndpointsInMinutes\": null,\r\n \"origins\": [\r\n {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/origins/origin1\"\r\n }\r\n ]\r\n }\r\n }\r\n ],\r\n \"defaultOriginGroup\": {\r\n \"id\": \"/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/profiles/profile8939/endpoints/endpoint869/originGroups/origingroup1\"\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 \"webApplicationFirewallPolicyLink\": null,\r\n \"urlSigningKeys\": []\r\n }\r\n}", "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjg5NmE1MjEtZDVmNC00NDM5LTkyOGEtYjkyMjNmZmU3MzM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/d43f402e-4034-493c-8caa-76db05ad4f0c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDQzZjQwMmUtNDAzNC00OTNjLThjYWEtNzZkYjA1YWQ0ZjBjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1584,10 +1584,10 @@ "no-cache" ], "x-ms-request-id": [ - "c18b5e73-cb69-463c-85a0-c4ff73e9a299" + "e00d6282-bbb7-45ca-8da5-43ad6a3b9af3" ], "x-ms-client-request-id": [ - "a383c868-e4ab-41dc-ba2d-a0e1e6bc01f5" + "cf1c667f-ca2a-440b-bda3-522eae2cdbfd" ], "OData-Version": [ "4.0" @@ -1608,16 +1608,16 @@ "11989" ], "x-ms-correlation-request-id": [ - "8b273024-c458-492a-a26a-3ad86d8802ee" + "a9bfb7c7-419b-49d3-a3d0-d413d45ff912" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014852Z:8b273024-c458-492a-a26a-3ad86d8802ee" + "WESTUS:20201209T042214Z:a9bfb7c7-419b-49d3-a3d0-d413d45ff912" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:48:51 GMT" + "Wed, 09 Dec 2020 04:22:13 GMT" ], "Content-Length": [ "78" @@ -1633,15 +1633,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520/providers/Microsoft.Cdn/operationresults/6896a521-d5f4-4439-928a-b9223ffe7339?api-version=2020-04-15", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwL3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvNjg5NmE1MjEtZDVmNC00NDM5LTkyOGEtYjkyMjNmZmU3MzM5P2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419/providers/Microsoft.Cdn/operationresults/d43f402e-4034-493c-8caa-76db05ad4f0c?api-version=2020-04-15", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5L3Byb3ZpZGVycy9NaWNyb3NvZnQuQ2RuL29wZXJhdGlvbnJlc3VsdHMvZDQzZjQwMmUtNDAzNC00OTNjLThjYWEtNzZkYjA1YWQ0ZjBjP2FwaS12ZXJzaW9uPTIwMjAtMDQtMTU=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Cdn.CdnManagementClient/4.4.1.0" ] }, @@ -1653,10 +1653,10 @@ "no-cache" ], "x-ms-request-id": [ - "54dd3b46-9ab1-40d0-962e-02d3480ae5b9" + "0b5bac18-6982-4920-a280-62660388d1ea" ], "x-ms-client-request-id": [ - "712d3730-ec82-4e10-aba0-668f066dca5e" + "9270c5a8-6f75-4ada-8e9a-e67efeab85cc" ], "OData-Version": [ "4.0" @@ -1677,16 +1677,16 @@ "11988" ], "x-ms-correlation-request-id": [ - "8e2ff93c-34bd-4010-ab10-a4a848aca65b" + "0ae4b209-f531-4809-980e-c1150c9899a0" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014902Z:8e2ff93c-34bd-4010-ab10-a4a848aca65b" + "WESTUS:20201209T042224Z:0ae4b209-f531-4809-980e-c1150c9899a0" ], "X-Content-Type-Options": [ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:02 GMT" + "Wed, 09 Dec 2020 04:22:24 GMT" ], "Content-Length": [ "77" @@ -1702,13 +1702,13 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup7520?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXA3NTIwP2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/resourcegroups/cdnResourceGroup1419?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL3Jlc291cmNlZ3JvdXBzL2NkblJlc291cmNlR3JvdXAxNDE5P2FwaS12ZXJzaW9uPTIwMTUtMTEtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "0557b8ed-7360-49bc-a60c-95538f432121" + "54e6b379-d521-4a3a-a2ff-a19a45da4c6b" ], "Accept-Language": [ "en-US" @@ -1716,7 +1716,7 @@ "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1728,7 +1728,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1737,13 +1737,13 @@ "14999" ], "x-ms-request-id": [ - "5702a608-1aea-4c4c-a324-aa06e2542cdb" + "cc924ca2-21e8-46d2-9d6a-89d580cccefe" ], "x-ms-correlation-request-id": [ - "5702a608-1aea-4c4c-a324-aa06e2542cdb" + "cc924ca2-21e8-46d2-9d6a-89d580cccefe" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014904Z:5702a608-1aea-4c4c-a324-aa06e2542cdb" + "WESTCENTRALUS:20201209T042227Z:cc924ca2-21e8-46d2-9d6a-89d580cccefe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1752,7 +1752,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:03 GMT" + "Wed, 09 Dec 2020 04:22:27 GMT" ], "Expires": [ "-1" @@ -1765,15 +1765,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1785,7 +1785,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1794,13 +1794,13 @@ "11999" ], "x-ms-request-id": [ - "7cba127f-4141-4a26-aa35-967426434a76" + "24e3bfa6-3042-42f0-ba8b-a91e73ad59f8" ], "x-ms-correlation-request-id": [ - "7cba127f-4141-4a26-aa35-967426434a76" + "24e3bfa6-3042-42f0-ba8b-a91e73ad59f8" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014919Z:7cba127f-4141-4a26-aa35-967426434a76" + "WESTCENTRALUS:20201209T042242Z:24e3bfa6-3042-42f0-ba8b-a91e73ad59f8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1809,7 +1809,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:18 GMT" + "Wed, 09 Dec 2020 04:22:42 GMT" ], "Expires": [ "-1" @@ -1822,15 +1822,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1842,7 +1842,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1851,13 +1851,13 @@ "11998" ], "x-ms-request-id": [ - "388f7def-a79e-4378-93cb-d605cc1dd0b4" + "3b91357a-31e7-49c2-a357-88b2a6d88e4b" ], "x-ms-correlation-request-id": [ - "388f7def-a79e-4378-93cb-d605cc1dd0b4" + "3b91357a-31e7-49c2-a357-88b2a6d88e4b" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014934Z:388f7def-a79e-4378-93cb-d605cc1dd0b4" + "WESTCENTRALUS:20201209T042257Z:3b91357a-31e7-49c2-a357-88b2a6d88e4b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1866,7 +1866,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:33 GMT" + "Wed, 09 Dec 2020 04:22:57 GMT" ], "Expires": [ "-1" @@ -1879,15 +1879,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1899,7 +1899,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1908,13 +1908,13 @@ "11997" ], "x-ms-request-id": [ - "0bdd7f1b-473d-49c7-a508-cddafd6570db" + "b57bc764-7d68-4e6c-8cd9-6ce3b06877e9" ], "x-ms-correlation-request-id": [ - "0bdd7f1b-473d-49c7-a508-cddafd6570db" + "b57bc764-7d68-4e6c-8cd9-6ce3b06877e9" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T014949Z:0bdd7f1b-473d-49c7-a508-cddafd6570db" + "WESTCENTRALUS:20201209T042312Z:b57bc764-7d68-4e6c-8cd9-6ce3b06877e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1923,7 +1923,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:49:48 GMT" + "Wed, 09 Dec 2020 04:23:12 GMT" ], "Expires": [ "-1" @@ -1936,15 +1936,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -1956,7 +1956,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -1965,13 +1965,13 @@ "11996" ], "x-ms-request-id": [ - "7974833d-76d3-4334-a852-333f151eb46c" + "9dd55045-e005-410b-a45a-17ec83c49bf5" ], "x-ms-correlation-request-id": [ - "7974833d-76d3-4334-a852-333f151eb46c" + "9dd55045-e005-410b-a45a-17ec83c49bf5" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015004Z:7974833d-76d3-4334-a852-333f151eb46c" + "WESTCENTRALUS:20201209T042327Z:9dd55045-e005-410b-a45a-17ec83c49bf5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -1980,7 +1980,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:50:03 GMT" + "Wed, 09 Dec 2020 04:23:27 GMT" ], "Expires": [ "-1" @@ -1993,15 +1993,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2013,7 +2013,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2022,13 +2022,13 @@ "11995" ], "x-ms-request-id": [ - "6aa48f9e-c823-4987-9f02-3a5de6c3b32f" + "dc789fad-b2ba-4bc3-b615-51055a39ea5b" ], "x-ms-correlation-request-id": [ - "6aa48f9e-c823-4987-9f02-3a5de6c3b32f" + "dc789fad-b2ba-4bc3-b615-51055a39ea5b" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015019Z:6aa48f9e-c823-4987-9f02-3a5de6c3b32f" + "WESTCENTRALUS:20201209T042342Z:dc789fad-b2ba-4bc3-b615-51055a39ea5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2037,7 +2037,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:50:18 GMT" + "Wed, 09 Dec 2020 04:23:42 GMT" ], "Expires": [ "-1" @@ -2050,15 +2050,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2070,7 +2070,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2079,13 +2079,13 @@ "11994" ], "x-ms-request-id": [ - "8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" + "fbde2853-4993-4eb7-aa00-a6b7f3b3b1e8" ], "x-ms-correlation-request-id": [ - "8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" + "fbde2853-4993-4eb7-aa00-a6b7f3b3b1e8" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015034Z:8d3aa1ff-4d5a-4523-9753-a6a88ddead9f" + "WESTCENTRALUS:20201209T042357Z:fbde2853-4993-4eb7-aa00-a6b7f3b3b1e8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2094,7 +2094,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:50:33 GMT" + "Wed, 09 Dec 2020 04:23:57 GMT" ], "Expires": [ "-1" @@ -2107,15 +2107,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2127,7 +2127,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2136,13 +2136,13 @@ "11993" ], "x-ms-request-id": [ - "c1aa6513-1c0d-44a4-8123-fa5fa5e71183" + "18097c0a-75d1-4254-b9b4-921cddb7ddcb" ], "x-ms-correlation-request-id": [ - "c1aa6513-1c0d-44a4-8123-fa5fa5e71183" + "18097c0a-75d1-4254-b9b4-921cddb7ddcb" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015049Z:c1aa6513-1c0d-44a4-8123-fa5fa5e71183" + "WESTCENTRALUS:20201209T042413Z:18097c0a-75d1-4254-b9b4-921cddb7ddcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2151,7 +2151,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:50:48 GMT" + "Wed, 09 Dec 2020 04:24:12 GMT" ], "Expires": [ "-1" @@ -2164,15 +2164,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2184,7 +2184,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2193,13 +2193,13 @@ "11992" ], "x-ms-request-id": [ - "09f3e3c7-6296-4465-a73c-b11b6f8313ea" + "5fffb737-957c-48e2-8960-5e79031d637a" ], "x-ms-correlation-request-id": [ - "09f3e3c7-6296-4465-a73c-b11b6f8313ea" + "5fffb737-957c-48e2-8960-5e79031d637a" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015104Z:09f3e3c7-6296-4465-a73c-b11b6f8313ea" + "WESTCENTRALUS:20201209T042428Z:5fffb737-957c-48e2-8960-5e79031d637a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2208,7 +2208,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:51:04 GMT" + "Wed, 09 Dec 2020 04:24:27 GMT" ], "Expires": [ "-1" @@ -2221,15 +2221,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2241,7 +2241,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2250,13 +2250,13 @@ "11991" ], "x-ms-request-id": [ - "6f3550fc-a6d7-40f4-bf89-9787dab1f382" + "1a5407b5-1e01-4cb5-9ed0-a740aa76e535" ], "x-ms-correlation-request-id": [ - "6f3550fc-a6d7-40f4-bf89-9787dab1f382" + "1a5407b5-1e01-4cb5-9ed0-a740aa76e535" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015119Z:6f3550fc-a6d7-40f4-bf89-9787dab1f382" + "WESTCENTRALUS:20201209T042443Z:1a5407b5-1e01-4cb5-9ed0-a740aa76e535" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2265,7 +2265,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:51:19 GMT" + "Wed, 09 Dec 2020 04:24:42 GMT" ], "Expires": [ "-1" @@ -2278,15 +2278,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2298,7 +2298,7 @@ "no-cache" ], "Location": [ - "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" + "https://management.azure.com/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01" ], "Retry-After": [ "15" @@ -2307,13 +2307,13 @@ "11990" ], "x-ms-request-id": [ - "2f8d35f4-23e1-43d6-9f6e-2032f78432e7" + "1e2028f9-ade5-4e6d-b48c-0d6d20e304b6" ], "x-ms-correlation-request-id": [ - "2f8d35f4-23e1-43d6-9f6e-2032f78432e7" + "1e2028f9-ade5-4e6d-b48c-0d6d20e304b6" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015134Z:2f8d35f4-23e1-43d6-9f6e-2032f78432e7" + "WESTCENTRALUS:20201209T042458Z:1e2028f9-ade5-4e6d-b48c-0d6d20e304b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2322,7 +2322,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:51:34 GMT" + "Wed, 09 Dec 2020 04:24:58 GMT" ], "Expires": [ "-1" @@ -2335,15 +2335,15 @@ "StatusCode": 202 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2358,13 +2358,13 @@ "11989" ], "x-ms-request-id": [ - "0ffa0500-bec4-4a61-8a08-3c135093ceea" + "b3c1c53e-4479-4e2b-baf2-933b40d571c8" ], "x-ms-correlation-request-id": [ - "0ffa0500-bec4-4a61-8a08-3c135093ceea" + "b3c1c53e-4479-4e2b-baf2-933b40d571c8" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015149Z:0ffa0500-bec4-4a61-8a08-3c135093ceea" + "WESTCENTRALUS:20201209T042513Z:b3c1c53e-4479-4e2b-baf2-933b40d571c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2373,7 +2373,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:51:49 GMT" + "Wed, 09 Dec 2020 04:25:13 GMT" ], "Expires": [ "-1" @@ -2386,15 +2386,15 @@ "StatusCode": 200 }, { - "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQNzUyMC1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFOelV5TUMxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", + "RequestUri": "/subscriptions/27cafca8-b9a4-4264-b399-45d0c9cca1ab/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1DRE5SRVNPVVJDRUdST1VQMTQxOS1XRVNUVVMiLCJqb2JMb2NhdGlvbiI6Indlc3R1cyJ9?api-version=2015-11-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvMjdjYWZjYTgtYjlhNC00MjY0LWIzOTktNDVkMGM5Y2NhMWFiL29wZXJhdGlvbnJlc3VsdHMvZXlKcWIySkpaQ0k2SWxKRlUwOVZVa05GUjFKUFZWQkVSVXhGVkVsUFRrcFBRaTFEUkU1U1JWTlBWVkpEUlVkU1QxVlFNVFF4T1MxWFJWTlVWVk1pTENKcWIySk1iMk5oZEdsdmJpSTZJbmRsYzNSMWN5Sjk/YXBpLXZlcnNpb249MjAxNS0xMS0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "User-Agent": [ "FxVersion/4.6.29321.03", "OSName/Windows", - "OSVersion/Microsoft.Windows.10.0.20231.", + "OSVersion/Microsoft.Windows.10.0.20270.", "Microsoft.Azure.Management.Resources.ResourceManagementClient/1.0.0.0" ] }, @@ -2409,13 +2409,13 @@ "11988" ], "x-ms-request-id": [ - "8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" + "615991e8-d073-482b-90ff-e99802c60cb4" ], "x-ms-correlation-request-id": [ - "8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" + "615991e8-d073-482b-90ff-e99802c60cb4" ], "x-ms-routing-request-id": [ - "WESTUS:20201027T015149Z:8c4da3c8-7986-489e-a2e9-bc2ce5b8f00d" + "WESTCENTRALUS:20201209T042513Z:615991e8-d073-482b-90ff-e99802c60cb4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -2424,7 +2424,7 @@ "nosniff" ], "Date": [ - "Tue, 27 Oct 2020 01:51:49 GMT" + "Wed, 09 Dec 2020 04:25:13 GMT" ], "Expires": [ "-1" @@ -2439,11 +2439,11 @@ ], "Names": { "CreateResourceGroup": [ - "cdnResourceGroup7520" + "cdnResourceGroup1419" ], "OriginUpdateTest": [ - "profile1615", - "endpoint3897" + "profile8939", + "endpoint869" ] }, "Variables": {