diff --git a/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md b/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md index f468b264223c..41d4f19093c0 100644 --- a/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md +++ b/sdk/cdn/azure-mgmt-cdn/CHANGELOG.md @@ -1,5 +1,10 @@ # Release History +## 5.1.0 (2020-08-10) + +**Features** + - Add UrlSigningAction + ## 5.0.0 (2020-07-21) **Features** diff --git a/sdk/cdn/azure-mgmt-cdn/README.md b/sdk/cdn/azure-mgmt-cdn/README.md index 913b84d34318..6df2848b9cb6 100644 --- a/sdk/cdn/azure-mgmt-cdn/README.md +++ b/sdk/cdn/azure-mgmt-cdn/README.md @@ -1,29 +1,21 @@ -## Microsoft Azure SDK for Python +# Microsoft Azure SDK for Python This is the Microsoft Azure CDN Management Client Library. - -Azure Resource Manager (ARM) is the next generation of management APIs -that replace the old Azure Service Management (ASM). - This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8. +For a more complete view of Azure libraries, see the [azure sdk python release](https://aka.ms/azsdk/python/all). -For the older Azure Service Management (ASM) libraries, see -[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy) -library. -For a more complete set of Azure libraries, see the -[azure sdk python release](https://aka.ms/azsdk/python/all). +# Usage -## Usage +For code examples, see [CDN Management](https://docs.microsoft.com/python/api/overview/azure/cdn) +on docs.microsoft.com. -For code examples, see [CDN -Management](https://docs.microsoft.com/python/api/overview/azure/cdn) on -docs.microsoft.com. -## Provide Feedback +# Provide Feedback -If you encounter any bugs or have suggestions, please file an issue in -the [Issues](https://github.com/Azure/azure-sdk-for-python/issues) +If you encounter any bugs or have suggestions, please file an issue in the +[Issues](https://github.com/Azure/azure-sdk-for-python/issues) section of the project. -![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-cdn%2FREADME.png) + +![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-cdn%2FREADME.png) diff --git a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/__init__.py b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/__init__.py index 019298060111..bb757eeace2d 100644 --- a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/__init__.py +++ b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/__init__.py @@ -109,6 +109,7 @@ from ._models_py3 import UrlRedirectActionParameters from ._models_py3 import UrlRewriteAction from ._models_py3 import UrlRewriteActionParameters + from ._models_py3 import UrlSigningAction from ._models_py3 import UrlSigningActionParameters from ._models_py3 import UrlSigningKey from ._models_py3 import UrlSigningParamIdentifier @@ -217,6 +218,7 @@ from ._models import UrlRedirectActionParameters from ._models import UrlRewriteAction from ._models import UrlRewriteActionParameters + from ._models import UrlSigningAction from ._models import UrlSigningActionParameters from ._models import UrlSigningKey from ._models import UrlSigningParamIdentifier @@ -385,6 +387,7 @@ 'UrlRedirectActionParameters', 'UrlRewriteAction', 'UrlRewriteActionParameters', + 'UrlSigningAction', 'UrlSigningActionParameters', 'UrlSigningKey', 'UrlSigningParamIdentifier', diff --git a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models.py b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models.py index 886fe1ff66a5..895f4c610006 100644 --- a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models.py +++ b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models.py @@ -933,7 +933,7 @@ class DeliveryRuleAction(Model): """An action for the delivery rule. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: UrlRedirectAction, UrlRewriteAction, + sub-classes are: UrlRedirectAction, UrlSigningAction, UrlRewriteAction, DeliveryRuleRequestHeaderAction, DeliveryRuleResponseHeaderAction, DeliveryRuleCacheExpirationAction, DeliveryRuleCacheKeyQueryStringAction @@ -952,7 +952,7 @@ class DeliveryRuleAction(Model): } _subtype_map = { - 'name': {'UrlRedirect': 'UrlRedirectAction', 'UrlRewrite': 'UrlRewriteAction', 'ModifyRequestHeader': 'DeliveryRuleRequestHeaderAction', 'ModifyResponseHeader': 'DeliveryRuleResponseHeaderAction', 'CacheExpiration': 'DeliveryRuleCacheExpirationAction', 'CacheKeyQueryString': 'DeliveryRuleCacheKeyQueryStringAction'} + 'name': {'UrlRedirect': 'UrlRedirectAction', 'UrlSigning': 'UrlSigningAction', 'UrlRewrite': 'UrlRewriteAction', 'ModifyRequestHeader': 'DeliveryRuleRequestHeaderAction', 'ModifyResponseHeader': 'DeliveryRuleResponseHeaderAction', 'CacheExpiration': 'DeliveryRuleCacheExpirationAction', 'CacheKeyQueryString': 'DeliveryRuleCacheKeyQueryStringAction'} } def __init__(self, **kwargs): @@ -4007,6 +4007,33 @@ def __init__(self, **kwargs): self.preserve_unmatched_path = kwargs.get('preserve_unmatched_path', None) +class UrlSigningAction(DeliveryRuleAction): + """Defines the url signing action for the delivery rule. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Constant filled by server. + :type name: str + :param parameters: Required. Defines the parameters for the action. + :type parameters: ~azure.mgmt.cdn.models.UrlSigningActionParameters + """ + + _validation = { + 'name': {'required': True}, + 'parameters': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'parameters': {'key': 'parameters', 'type': 'UrlSigningActionParameters'}, + } + + def __init__(self, **kwargs): + super(UrlSigningAction, self).__init__(**kwargs) + self.parameters = kwargs.get('parameters', None) + self.name = 'UrlSigning' + + class UrlSigningActionParameters(Model): """Defines the parameters for the Url Signing action. diff --git a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models_py3.py b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models_py3.py index 12b317c50828..35d4b4930f18 100644 --- a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models_py3.py +++ b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/models/_models_py3.py @@ -933,7 +933,7 @@ class DeliveryRuleAction(Model): """An action for the delivery rule. You probably want to use the sub-classes and not this class directly. Known - sub-classes are: UrlRedirectAction, UrlRewriteAction, + sub-classes are: UrlRedirectAction, UrlSigningAction, UrlRewriteAction, DeliveryRuleRequestHeaderAction, DeliveryRuleResponseHeaderAction, DeliveryRuleCacheExpirationAction, DeliveryRuleCacheKeyQueryStringAction @@ -952,7 +952,7 @@ class DeliveryRuleAction(Model): } _subtype_map = { - 'name': {'UrlRedirect': 'UrlRedirectAction', 'UrlRewrite': 'UrlRewriteAction', 'ModifyRequestHeader': 'DeliveryRuleRequestHeaderAction', 'ModifyResponseHeader': 'DeliveryRuleResponseHeaderAction', 'CacheExpiration': 'DeliveryRuleCacheExpirationAction', 'CacheKeyQueryString': 'DeliveryRuleCacheKeyQueryStringAction'} + 'name': {'UrlRedirect': 'UrlRedirectAction', 'UrlSigning': 'UrlSigningAction', 'UrlRewrite': 'UrlRewriteAction', 'ModifyRequestHeader': 'DeliveryRuleRequestHeaderAction', 'ModifyResponseHeader': 'DeliveryRuleResponseHeaderAction', 'CacheExpiration': 'DeliveryRuleCacheExpirationAction', 'CacheKeyQueryString': 'DeliveryRuleCacheKeyQueryStringAction'} } def __init__(self, **kwargs) -> None: @@ -4007,6 +4007,33 @@ def __init__(self, *, source_pattern: str, destination: str, preserve_unmatched_ self.preserve_unmatched_path = preserve_unmatched_path +class UrlSigningAction(DeliveryRuleAction): + """Defines the url signing action for the delivery rule. + + All required parameters must be populated in order to send to Azure. + + :param name: Required. Constant filled by server. + :type name: str + :param parameters: Required. Defines the parameters for the action. + :type parameters: ~azure.mgmt.cdn.models.UrlSigningActionParameters + """ + + _validation = { + 'name': {'required': True}, + 'parameters': {'required': True}, + } + + _attribute_map = { + 'name': {'key': 'name', 'type': 'str'}, + 'parameters': {'key': 'parameters', 'type': 'UrlSigningActionParameters'}, + } + + def __init__(self, *, parameters, **kwargs) -> None: + super(UrlSigningAction, self).__init__(**kwargs) + self.parameters = parameters + self.name = 'UrlSigning' + + class UrlSigningActionParameters(Model): """Defines the parameters for the Url Signing action. diff --git a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/version.py b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/version.py index 654c55a24205..df536f4a0d45 100644 --- a/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/version.py +++ b/sdk/cdn/azure-mgmt-cdn/azure/mgmt/cdn/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "5.0.0" +VERSION = "5.1.0" diff --git a/sdk/cdn/azure-mgmt-cdn/setup.py b/sdk/cdn/azure-mgmt-cdn/setup.py index 5d51c73ccf6d..6b7a76e367f5 100644 --- a/sdk/cdn/azure-mgmt-cdn/setup.py +++ b/sdk/cdn/azure-mgmt-cdn/setup.py @@ -36,7 +36,7 @@ pass # Version extraction inspired from 'requests' -with open(os.path.join(package_folder_path, 'version.py') +with open(os.path.join(package_folder_path, 'version.py') if os.path.exists(os.path.join(package_folder_path, 'version.py')) else os.path.join(package_folder_path, '_version.py'), 'r') as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', diff --git a/sdk/cdn/azure-mgmt-cdn/tests/recordings/test_cli_mgmt_cdn.test_cdn.yaml b/sdk/cdn/azure-mgmt-cdn/tests/recordings/test_cli_mgmt_cdn.test_cdn.yaml index 94951d97efdb..c595ae3e3186 100644 --- a/sdk/cdn/azure-mgmt-cdn/tests/recordings/test_cli_mgmt_cdn.test_cdn.yaml +++ b/sdk/cdn/azure-mgmt-cdn/tests/recordings/test_cli_mgmt_cdn.test_cdn.yaml @@ -13,18 +13,172 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n - \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n - \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\"\ + ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\ + :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n },\"properties\"\ + :{\r\n \"provisioningState\":\"Creating\",\"resourceState\":\"Creating\"\ + \r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/67bd42e3-0b1e-4992-a55d-2f10a94f1fc8?api-version=2020-04-15 + cache-control: + - no-cache + content-length: + - '381' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:44:00 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '24' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/67bd42e3-0b1e-4992-a55d-2f10a94f1fc8?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:44:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/67bd42e3-0b1e-4992-a55d-2f10a94f1fc8?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:44:40 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename?api-version=2020-04-15 + response: + body: + string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\"\ + ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\ + :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n },\"properties\"\ + :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\ + \r\n }\r\n}" headers: cache-control: - no-cache @@ -33,7 +187,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:03 GMT + - Tue, 11 Aug 2020 05:44:41 GMT expires: - '-1' odata-version: @@ -41,7 +195,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -53,7 +207,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '24' + - '49' x-powered-by: - ASP.NET status: @@ -77,32 +231,155 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n - \ \"kay1\":\"value1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n - \ \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n - \ {\r\n \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n - \ \r\n ],\"contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\r\n - \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n - \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"urlSigningKeys\":[\r\n - \ \r\n ]\r\n }\r\n}" + string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \"kay1\"\ + :\"value1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\"\ + :\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"\ + provisioningState\":\"Creating\",\"resourceState\":\"Creating\",\"isHttpAllowed\"\ + :true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\"\ + ,\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \"name\":\"\ + origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"\ + httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\"\ + :null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n \ + \ ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n \r\n ],\"\ + contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\ + \r\n ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\"\ + :null,\"geoFilters\":[\r\n \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\"\ + :null,\"urlSigningKeys\":[\r\n \r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/f64fc9b4-f016-4c27-8c24-04b6d1a1660b?api-version=2020-04-15 + cache-control: + - no-cache + content-length: + - '1313' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:44:44 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '99' + x-powered-by: + - ASP.NET + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/f64fc9b4-f016-4c27-8c24-04b6d1a1660b?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '77' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:44:54 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x?api-version=2020-04-15 + response: + body: + string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \"kay1\"\ + :\"value1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\"\ + :\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"\ + provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\"\ + :true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\"\ + ,\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \"name\":\"\ + origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"\ + httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\"\ + :null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n \ + \ ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n \r\n ],\"\ + contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\ + \r\n ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\"\ + :null,\"geoFilters\":[\r\n \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\"\ + :null,\"urlSigningKeys\":[\r\n \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1309' + - '1313' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:09 GMT + - Tue, 11 Aug 2020 05:44:56 GMT expires: - '-1' odata-version: @@ -110,7 +387,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -122,7 +399,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '99' + - '49' x-powered-by: - ASP.NET status: @@ -138,26 +415,30 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"origin1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n - \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"enabled\":true,\"priority\":null,\"weight\":null,\"originHostHeader\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"origin1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n\ + \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\"\ + :\"host1.hello.com\",\"httpPort\":null,\"httpsPort\":null,\"enabled\":true,\"\ + priority\":null,\"weight\":null,\"originHostHeader\":null,\"privateLinkResourceId\"\ + :null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\"\ + :null,\"privateLinkApprovalMessage\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '620' + - '624' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:10 GMT + - Tue, 11 Aug 2020 05:44:56 GMT expires: - '-1' odata-version: @@ -165,7 +446,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -191,32 +472,40 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n - \ \"kay1\":\"value1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n - \ \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n - \ {\r\n \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n - \ \r\n ],\"contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\r\n - \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n - \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"urlSigningKeys\":[\r\n - \ \r\n ]\r\n }\r\n}" + string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \"kay1\"\ + :\"value1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\"\ + :\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"\ + provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\"\ + :true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\"\ + ,\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \"name\":\"\ + origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"\ + httpPort\":null,\"httpsPort\":null,\"originHostHeader\":null,\"priority\"\ + :null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n \ + \ ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n \r\n ],\"\ + contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\ + \r\n ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\"\ + :null,\"geoFilters\":[\r\n \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\"\ + :null,\"urlSigningKeys\":[\r\n \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1309' + - '1313' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:11 GMT + - Tue, 11 Aug 2020 05:44:56 GMT expires: - '-1' odata-version: @@ -224,7 +513,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -252,18 +541,19 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n - \ \r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n - \ },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\"\ + ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \r\n },\"location\"\ + :\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\r\n },\"properties\"\ + :{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\ + \r\n }\r\n}" headers: cache-control: - no-cache @@ -272,7 +562,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:13 GMT + - Tue, 11 Aug 2020 05:44:57 GMT expires: - '-1' odata-version: @@ -280,7 +570,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -312,18 +602,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"origin1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1\",\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n - \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"enabled\":true,\"priority\":null,\"weight\":null,\"originHostHeader\":null,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"origin1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n\ + \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\"\ + :\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"enabled\":true,\"\ + priority\":null,\"weight\":null,\"originHostHeader\":null,\"privateLinkResourceId\"\ + :null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\"\ + :null,\"privateLinkApprovalMessage\":null\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/3f7b798f-d1e5-4c89-a536-d4982f4c4f53?api-version=2020-04-15 cache-control: - no-cache content-length: @@ -331,21 +627,19 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:15 GMT + - Tue, 11 Aug 2020 05:44:58 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/3f7b798f-d1e5-4c89-a536-d4982f4c4f53/profileresults/profilename/endpointresults/endpoint9527x/originresults/origin1?api-version=2020-04-15 odata-version: - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: @@ -355,10 +649,10 @@ interactions: x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: - body: '{"hostName": "www.someDomain.com"}' + body: null headers: Accept: - application/json @@ -366,32 +660,442 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '34' - Content-Type: - - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/validateCustomDomain?api-version=2020-04-15 + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/3f7b798f-d1e5-4c89-a536-d4982f4c4f53?api-version=2020-04-15 response: body: - string: "{\r\n \"customDomainValidated\":false,\"message\":\"We couldn't find - a DNS record for custom domain that points to endpoint. To map a domain to - this endpoint, create a CNAME record with your DNS provider for custom domain - that points to endpoint.\",\"reason\":\"IncorrectMapping\"\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '272' + - '77' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:45:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1?api-version=2020-04-15 + response: + body: + string: "{\r\n \"name\":\"origin1\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/origins/origin1\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints/origins\",\"properties\":{\r\n\ + \ \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\",\"hostName\"\ + :\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"enabled\":true,\"\ + priority\":null,\"weight\":null,\"originHostHeader\":null,\"privateLinkResourceId\"\ + :null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\"\ + :null,\"privateLinkApprovalMessage\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '620' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:45:09 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"hostName": "www.someDomain.com"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '34' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/validateCustomDomain?api-version=2020-04-15 + response: + body: + string: "{\r\n \"customDomainValidated\":false,\"message\":\"We couldn't find\ + \ a DNS record for custom domain that points to endpoint. To map a domain\ + \ to this endpoint, create a CNAME record with your DNS provider for custom\ + \ domain that points to endpoint.\",\"reason\":\"IncorrectMapping\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '272' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:45:10 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"contentPaths": ["/folder1"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/purge?api-version=2020-04-15 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 11 Aug 2020 05:45:11 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:45:22 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:45:52 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:46:23 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '78' + content-type: + - application/json; odata.metadata=minimal + date: + - Tue, 11 Aug 2020 05:46:53 GMT + expires: + - '-1' + odata-version: + - '4.0' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/68ad5d55-cff2-4f0d-81ab-0fb6784a8862?api-version=2020-04-15 + response: + body: + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '77' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:17 GMT + - Tue, 11 Aug 2020 05:47:23 GMT expires: - '-1' odata-version: @@ -399,7 +1103,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -410,15 +1114,13 @@ interactions: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1199' x-powered-by: - ASP.NET status: code: 200 message: OK - request: - body: '{"contentPaths": ["/folder1"]}' + body: null headers: Accept: - application/json @@ -427,36 +1129,51 @@ interactions: Connection: - keep-alive Content-Length: - - '30' - Content-Type: - - application/json; charset=utf-8 + - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/purge?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/stop?api-version=2020-04-15 response: body: - string: '' + string: "{\r\n \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\"\ + :\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"\ + Stopping\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\ + :\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \ + \ \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\"\ + ,\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"\ + weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\"\ + :null,\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n\ + \ \"text/html\",\"application/octet-stream\"\r\n ],\"isCompressionEnabled\"\ + :true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n \ + \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"\ + urlSigningKeys\":[\r\n \r\n ]\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/2c6ccf42-424d-4e22-86c8-3041b17cc3d9?api-version=2020-04-15 cache-control: - no-cache content-length: - - '0' + - '955' + content-type: + - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:22 GMT + - Tue, 11 Aug 2020 05:47:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/2c6ccf42-424d-4e22-86c8-3041b17cc3d9/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + odata-version: + - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -464,7 +1181,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' + - '49' x-powered-by: - ASP.NET status: @@ -480,23 +1197,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/2c6ccf42-424d-4e22-86c8-3041b17cc3d9?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '78' + - '77' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:36:34 GMT + - Tue, 11 Aug 2020 05:47:37 GMT expires: - '-1' odata-version: @@ -504,7 +1221,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -529,47 +1246,65 @@ interactions: - gzip, deflate Connection: - keep-alive + Content-Length: + - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/start?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\"\ + :\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"\ + Starting\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\"\ + :\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \ + \ \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\"\ + ,\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"\ + weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\"\ + :null,\"customDomains\":[\r\n \r\n ],\"contentTypesToCompress\":[\r\n\ + \ \"text/html\",\"application/octet-stream\"\r\n ],\"isCompressionEnabled\"\ + :true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n \ + \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"\ + urlSigningKeys\":[\r\n \r\n ]\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/d95430d2-0ce2-4acd-ac8c-f32166a45302?api-version=2020-04-15 cache-control: - no-cache content-length: - - '78' + - '955' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:37:04 GMT + - Tue, 11 Aug 2020 05:47:38 GMT expires: - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/d95430d2-0ce2-4acd-ac8c-f32166a45302/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 odata-version: - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '49' x-powered-by: - ASP.NET status: - code: 200 - message: OK + code: 202 + message: Accepted - request: body: null headers: @@ -580,23 +1315,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/d95430d2-0ce2-4acd-ac8c-f32166a45302?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '78' + - '77' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:37:34 GMT + - Tue, 11 Aug 2020 05:47:49 GMT expires: - '-1' odata-version: @@ -604,7 +1339,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -620,6 +1355,59 @@ interactions: status: code: 200 message: OK +- request: + body: '{"contentPaths": ["/folder1"]}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '30' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/load?api-version=2020-04-15 + response: + body: + string: '' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 + cache-control: + - no-cache + content-length: + - '0' + date: + - Tue, 11 Aug 2020 05:47:50 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-resource-requests: + - '499' + x-powered-by: + - ASP.NET + status: + code: 202 + message: Accepted - request: body: null headers: @@ -630,14 +1418,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -646,7 +1434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:38:05 GMT + - Tue, 11 Aug 2020 05:48:01 GMT expires: - '-1' odata-version: @@ -654,7 +1442,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -680,23 +1468,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/6e323b7a-926b-4891-a57d-398390d36fd3?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '77' + - '78' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:38:35 GMT + - Tue, 11 Aug 2020 05:48:31 GMT expires: - '-1' odata-version: @@ -704,7 +1492,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -729,58 +1517,47 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/stop?api-version=2020-04-15 + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Stopping\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n - \ {\r\n \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n - \ \r\n ],\"contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\r\n - \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n - \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"urlSigningKeys\":[\r\n - \ \r\n ]\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/7881e8dc-d178-4dfc-91d2-2adb74196993?api-version=2020-04-15 cache-control: - no-cache content-length: - - '955' + - '78' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:38:44 GMT + - Tue, 11 Aug 2020 05:49:01 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/7881e8dc-d178-4dfc-91d2-2adb74196993/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 odata-version: - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -791,14 +1568,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/7881e8dc-d178-4dfc-91d2-2adb74196993?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -807,7 +1584,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:38:56 GMT + - Tue, 11 Aug 2020 05:49:32 GMT expires: - '-1' odata-version: @@ -815,7 +1592,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -841,23 +1618,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/7881e8dc-d178-4dfc-91d2-2adb74196993?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '77' + - '78' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:39:26 GMT + - Tue, 11 Aug 2020 05:50:02 GMT expires: - '-1' odata-version: @@ -865,7 +1642,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -890,58 +1667,47 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/start?api-version=2020-04-15 + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Starting\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n - \ {\r\n \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n - \ \r\n ],\"contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\r\n - \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n - \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"urlSigningKeys\":[\r\n - \ \r\n ]\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/90dab579-de78-4948-b775-19f614b20c53?api-version=2020-04-15 cache-control: - no-cache content-length: - - '955' + - '78' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:39:38 GMT + - Tue, 11 Aug 2020 05:50:32 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/90dab579-de78-4948-b775-19f614b20c53/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 odata-version: - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '49' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -952,14 +1718,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/90dab579-de78-4948-b775-19f614b20c53?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -968,7 +1734,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:39:49 GMT + - Tue, 11 Aug 2020 05:51:02 GMT expires: - '-1' odata-version: @@ -976,7 +1742,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1002,23 +1768,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/90dab579-de78-4948-b775-19f614b20c53?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '77' + - '78' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:40:19 GMT + - Tue, 11 Aug 2020 05:51:33 GMT expires: - '-1' odata-version: @@ -1026,7 +1792,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1043,7 +1809,7 @@ interactions: code: 200 message: OK - request: - body: '{"contentPaths": ["/folder1"]}' + body: null headers: Accept: - application/json @@ -1051,50 +1817,47 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '30' - Content-Type: - - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - accept-language: - - en-US - method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x/load?api-version=2020-04-15 + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: '' + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 cache-control: - no-cache content-length: - - '0' + - '78' + content-type: + - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:40:27 GMT + - Tue, 11 Aug 2020 05:52:03 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + odata-version: + - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-aspnet-version: - 4.0.30319 x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '499' x-powered-by: - ASP.NET status: - code: 202 - message: Accepted + code: 200 + message: OK - request: body: null headers: @@ -1105,14 +1868,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1121,7 +1884,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:40:39 GMT + - Tue, 11 Aug 2020 05:52:33 GMT expires: - '-1' odata-version: @@ -1129,7 +1892,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1155,14 +1918,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1171,7 +1934,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:41:10 GMT + - Tue, 11 Aug 2020 05:53:03 GMT expires: - '-1' odata-version: @@ -1179,7 +1942,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1205,14 +1968,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1221,7 +1984,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:41:40 GMT + - Tue, 11 Aug 2020 05:53:34 GMT expires: - '-1' odata-version: @@ -1229,7 +1992,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1255,14 +2018,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1271,7 +2034,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:42:11 GMT + - Tue, 11 Aug 2020 05:54:04 GMT expires: - '-1' odata-version: @@ -1279,7 +2042,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1305,14 +2068,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1321,7 +2084,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:42:41 GMT + - Tue, 11 Aug 2020 05:54:34 GMT expires: - '-1' odata-version: @@ -1329,7 +2092,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1355,14 +2118,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1371,7 +2134,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:43:11 GMT + - Tue, 11 Aug 2020 05:55:05 GMT expires: - '-1' odata-version: @@ -1379,7 +2142,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1405,14 +2168,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1421,7 +2184,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:43:42 GMT + - Tue, 11 Aug 2020 05:55:35 GMT expires: - '-1' odata-version: @@ -1429,7 +2192,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1455,14 +2218,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1471,7 +2234,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:44:12 GMT + - Tue, 11 Aug 2020 05:56:05 GMT expires: - '-1' odata-version: @@ -1479,7 +2242,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1505,14 +2268,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1521,7 +2284,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:44:43 GMT + - Tue, 11 Aug 2020 05:56:36 GMT expires: - '-1' odata-version: @@ -1529,7 +2292,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1555,14 +2318,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1571,7 +2334,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:45:14 GMT + - Tue, 11 Aug 2020 05:57:06 GMT expires: - '-1' odata-version: @@ -1579,7 +2342,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1605,14 +2368,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1621,7 +2384,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:45:45 GMT + - Tue, 11 Aug 2020 05:57:36 GMT expires: - '-1' odata-version: @@ -1629,7 +2392,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1655,14 +2418,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1671,7 +2434,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:46:16 GMT + - Tue, 11 Aug 2020 05:58:07 GMT expires: - '-1' odata-version: @@ -1679,7 +2442,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1705,14 +2468,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1721,7 +2484,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:46:46 GMT + - Tue, 11 Aug 2020 05:58:37 GMT expires: - '-1' odata-version: @@ -1729,7 +2492,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1755,14 +2518,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/17e556da-9881-4949-8650-88271a96b711?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/435dcc9a-608c-480e-b563-124567eb0620?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -1771,7 +2534,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:17 GMT + - Tue, 11 Aug 2020 05:59:07 GMT expires: - '-1' odata-version: @@ -1779,7 +2542,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1807,16 +2570,16 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/getSupportedOptimizationTypes?api-version=2020-04-15 response: body: - string: "{\r\n \"supportedOptimizationTypes\":[\r\n \"GeneralWebDelivery\",\"DynamicSiteAcceleration\"\r\n - \ ]\r\n}" + string: "{\r\n \"supportedOptimizationTypes\":[\r\n \"GeneralWebDelivery\"\ + ,\"DynamicSiteAcceleration\"\r\n ]\r\n}" headers: cache-control: - no-cache @@ -1825,7 +2588,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:23 GMT + - Tue, 11 Aug 2020 05:59:10 GMT expires: - '-1' odata-version: @@ -1833,7 +2596,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1865,23 +2628,31 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\",\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n - \ \"additional_properties\":\"Tag1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n - \ \"hostName\":\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\":true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\",\"originPath\":\"/image\",\"origins\":[\r\n - \ {\r\n \"name\":\"origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\":null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\":null\r\n - \ }\r\n }\r\n ],\"originGroups\":[\r\n \r\n ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n - \ \r\n ],\"contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\r\n - \ ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\":null,\"geoFilters\":[\r\n - \ \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\":null,\"urlSigningKeys\":[\r\n - \ \r\n ]\r\n }\r\n}" + string: "{\r\n \"name\":\"endpoint9527x\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/endpoints/endpoint9527x\"\ + ,\"type\":\"Microsoft.Cdn/profiles/endpoints\",\"tags\":{\r\n \"additional_properties\"\ + :\"Tag1\"\r\n },\"location\":\"WestUs\",\"properties\":{\r\n \"hostName\"\ + :\"endpoint9527x.azureedge.net\",\"originHostHeader\":\"www.bing.com\",\"\ + provisioningState\":\"Succeeded\",\"resourceState\":\"Running\",\"isHttpAllowed\"\ + :true,\"isHttpsAllowed\":true,\"queryStringCachingBehavior\":\"BypassCaching\"\ + ,\"originPath\":\"/image\",\"origins\":[\r\n {\r\n \"name\":\"\ + origin1\",\"properties\":{\r\n \"hostName\":\"host1.hello.com\",\"\ + httpPort\":42,\"httpsPort\":43,\"originHostHeader\":null,\"priority\":null,\"\ + weight\":null,\"enabled\":true,\"privateLinkResourceId\":null,\"privateLinkLocation\"\ + :null,\"privateLinkAlias\":null,\"privateEndpointStatus\":null,\"privateLinkApprovalMessage\"\ + :null\r\n }\r\n }\r\n ],\"originGroups\":[\r\n \r\n \ + \ ],\"defaultOriginGroup\":null,\"customDomains\":[\r\n \r\n ],\"\ + contentTypesToCompress\":[\r\n \"text/html\",\"application/octet-stream\"\ + \r\n ],\"isCompressionEnabled\":true,\"optimizationType\":null,\"probePath\"\ + :null,\"geoFilters\":[\r\n \r\n ],\"deliveryPolicy\":null,\"webApplicationFirewallPolicyLink\"\ + :null,\"urlSigningKeys\":[\r\n \r\n ]\r\n }\r\n}" headers: cache-control: - no-cache @@ -1890,7 +2661,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:34 GMT + - Tue, 11 Aug 2020 05:59:12 GMT expires: - '-1' odata-version: @@ -1898,7 +2669,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1928,24 +2699,25 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename/generateSsoUri?api-version=2020-04-15 response: body: - string: "{\r\n \"ssoUriValue\":\"https://cdn.windowsazure.com/account/loginexternal/?token=HX8oM1V4V8vZ0cjARDqlx%2brNlMDSL5EZOCiCbIKtHe0%3d×tamp=2020-07-21T14:47:36.1864020Z&cdnAccountId=F1E55&userCustomId=SSO-4f4efe37-b8e3-4319-99d0-d1e8d1aeb247&restEndpointId=0\"\r\n}" + string: "{\r\n \"ssoUriValue\":\"https://cdn.windowsazure.com/account/loginexternal/?token=aXdUZP2pEFS9joiecT5EZKzk97HmesryVxOv1d5Zjk4%3d×tamp=2020-08-11T05:59:13.7485168Z&cdnAccountId=F42A1&userCustomId=SSO-e1b3db31-44c5-4b2c-968f-b2324c4df55e&restEndpointId=0\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '259' + - '257' content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:36 GMT + - Tue, 11 Aug 2020 05:59:13 GMT expires: - '-1' odata-version: @@ -1953,7 +2725,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1985,21 +2757,22 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: PATCH uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n - \ \"tags\":\"{'additional_properties': 'Tag1'}\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n - \ \"name\":\"Standard_Verizon\"\r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\"\ + ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \"tags\":\"{'additional_properties':\ + \ 'Tag1'}\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\ + \r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\"\ + :\"Active\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/553094c5-408f-436c-9c8f-7dac39229d28?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/9118c7dd-17b2-4957-983d-0232c2f4223c?api-version=2020-04-15 cache-control: - no-cache content-length: @@ -2007,17 +2780,17 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:40 GMT + - Tue, 11 Aug 2020 05:59:16 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/553094c5-408f-436c-9c8f-7dac39229d28/profileresults/profilename?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/9118c7dd-17b2-4957-983d-0232c2f4223c/profileresults/profilename?api-version=2020-04-15 odata-version: - '4.0' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2041,14 +2814,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/553094c5-408f-436c-9c8f-7dac39229d28?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/9118c7dd-17b2-4957-983d-0232c2f4223c?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -2057,7 +2830,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:51 GMT + - Tue, 11 Aug 2020 05:59:26 GMT expires: - '-1' odata-version: @@ -2065,7 +2838,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2091,16 +2864,17 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename?api-version=2020-04-15 response: body: - string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\",\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n - \ \"tags\":\"{'additional_properties': 'Tag1'}\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n - \ \"name\":\"Standard_Verizon\"\r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\":\"Active\"\r\n - \ }\r\n}" + string: "{\r\n \"name\":\"profilename\",\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/profiles/profilename\"\ + ,\"type\":\"Microsoft.Cdn/profiles\",\"tags\":{\r\n \"tags\":\"{'additional_properties':\ + \ 'Tag1'}\"\r\n },\"location\":\"WestUs\",\"sku\":{\r\n \"name\":\"Standard_Verizon\"\ + \r\n },\"properties\":{\r\n \"provisioningState\":\"Succeeded\",\"resourceState\"\ + :\"Active\"\r\n }\r\n}" headers: cache-control: - no-cache @@ -2109,7 +2883,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:53 GMT + - Tue, 11 Aug 2020 05:59:27 GMT expires: - '-1' odata-version: @@ -2117,7 +2891,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2149,8 +2923,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -2166,7 +2940,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:56 GMT + - Tue, 11 Aug 2020 05:59:29 GMT expires: - '-1' odata-version: @@ -2174,7 +2948,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2206,15 +2980,16 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Cdn/validateProbe?api-version=2020-04-15 response: body: - string: "{\r\n \"isValid\":true,\"errorCode\":\"None\",\"message\":null\r\n}" + string: "{\r\n \"isValid\":true,\"errorCode\":\"None\",\"message\":null\r\n\ + }" headers: cache-control: - no-cache @@ -2223,7 +2998,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:47:58 GMT + - Tue, 11 Aug 2020 05:59:31 GMT expires: - '-1' odata-version: @@ -2231,7 +3006,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2263,8 +3038,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -2280,7 +3055,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:48:01 GMT + - Tue, 11 Aug 2020 05:59:32 GMT expires: - '-1' odata-version: @@ -2288,7 +3063,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2318,8 +3093,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -2331,13 +3106,13 @@ interactions: cache-control: - no-cache date: - - Tue, 21 Jul 2020 14:48:03 GMT + - Tue, 11 Aug 2020 05:59:32 GMT expires: - '-1' pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2363,8 +3138,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -2374,21 +3149,21 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/5b47903e-6227-4ec2-8993-676cf09f52fe?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1d27ebde-27c4-45e4-bd7f-180a25bc0717?api-version=2020-04-15 cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Jul 2020 14:48:07 GMT + - Tue, 11 Aug 2020 05:59:34 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/5b47903e-6227-4ec2-8993-676cf09f52fe/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1d27ebde-27c4-45e4-bd7f-180a25bc0717/profileresults/profilename/endpointresults/endpoint9527x?api-version=2020-04-15 pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2412,64 +3187,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/5b47903e-6227-4ec2-8993-676cf09f52fe?api-version=2020-04-15 - response: - body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '78' - content-type: - - application/json; odata.metadata=minimal - date: - - Tue, 21 Jul 2020 14:48:18 GMT - expires: - - '-1' - odata-version: - - '4.0' - pragma: - - no-cache - server: - - Microsoft-IIS/8.5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/5b47903e-6227-4ec2-8993-676cf09f52fe?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1d27ebde-27c4-45e4-bd7f-180a25bc0717?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -2478,7 +3203,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:48:49 GMT + - Tue, 11 Aug 2020 05:59:44 GMT expires: - '-1' odata-version: @@ -2486,7 +3211,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2514,8 +3239,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -2525,21 +3250,21 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1cebfe36-29b4-4fa1-996d-269ac8c1fe4f?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/b4aba3ea-d3fa-4c2a-b7d9-a8ecff5c3569?api-version=2020-04-15 cache-control: - no-cache content-length: - '0' date: - - Tue, 21 Jul 2020 14:48:52 GMT + - Tue, 11 Aug 2020 05:59:46 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1cebfe36-29b4-4fa1-996d-269ac8c1fe4f/profileresults/profilename?api-version=2020-04-15 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/b4aba3ea-d3fa-4c2a-b7d9-a8ecff5c3569/profileresults/profilename?api-version=2020-04-15 pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains x-aspnet-version: @@ -2563,64 +3288,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1cebfe36-29b4-4fa1-996d-269ac8c1fe4f?api-version=2020-04-15 - response: - body: - string: "{\r\n \"status\":\"InProgress\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '78' - content-type: - - application/json; odata.metadata=minimal - date: - - Tue, 21 Jul 2020 14:49:03 GMT - expires: - - '-1' - odata-version: - - '4.0' - pragma: - - no-cache - server: - - Microsoft-IIS/8.5 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-aspnet-version: - - 4.0.30319 - x-content-type-options: - - nosniff - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.2 (Windows-10-10.0.19041-SP0) msrest/0.6.17 msrest_azure/0.6.3 - azure-mgmt-cdn/5.0.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-5.3.0-1032-azure-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-cdn/5.1.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/1cebfe36-29b4-4fa1-996d-269ac8c1fe4f?api-version=2020-04-15 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_cli_mgmt_cdn_test_cdn8f6e0a82/providers/Microsoft.Cdn/operationresults/b4aba3ea-d3fa-4c2a-b7d9-a8ecff5c3569?api-version=2020-04-15 response: body: - string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\",\"message\":null\r\n - \ }\r\n}" + string: "{\r\n \"status\":\"Succeeded\",\"error\":{\r\n \"code\":\"None\"\ + ,\"message\":null\r\n }\r\n}" headers: cache-control: - no-cache @@ -2629,7 +3304,7 @@ interactions: content-type: - application/json; odata.metadata=minimal date: - - Tue, 21 Jul 2020 14:49:33 GMT + - Tue, 11 Aug 2020 05:59:57 GMT expires: - '-1' odata-version: @@ -2637,7 +3312,7 @@ interactions: pragma: - no-cache server: - - Microsoft-IIS/8.5 + - Microsoft-IIS/10.0 strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: