From da59934f023e319765ac0057603c9bfe3310aee6 Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Mon, 12 Apr 2021 14:03:27 +0800 Subject: [PATCH 1/5] --tier --- src/azure-firewall/azext_firewall/_params.py | 5 +- src/azure-firewall/azext_firewall/custom.py | 4 +- .../recordings/test_azure_firewall_tier.yaml | 222 +++ .../test_azure_firewall_virtual_hub.yaml | 1689 +++++------------ .../latest/test_azure_firewall_scenario.py | 8 + 5 files changed, 685 insertions(+), 1243 deletions(-) create mode 100644 src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_tier.yaml diff --git a/src/azure-firewall/azext_firewall/_params.py b/src/azure-firewall/azext_firewall/_params.py index 9879c3438f3..2eb6f13e547 100644 --- a/src/azure-firewall/azext_firewall/_params.py +++ b/src/azure-firewall/azext_firewall/_params.py @@ -27,10 +27,10 @@ def load_arguments(self, _): (AzureFirewallNetworkRuleProtocol, AzureFirewallRCActionType, AzureFirewallNatRCActionType, FirewallPolicySkuTier, FirewallPolicyIntrusionDetectionStateType, - FirewallPolicyIntrusionDetectionProtocol) = \ + FirewallPolicyIntrusionDetectionProtocol, AzureFirewallSkuTier) = \ self.get_models('AzureFirewallNetworkRuleProtocol', 'AzureFirewallRCActionType', 'AzureFirewallNatRCActionType', 'FirewallPolicySkuTier', 'FirewallPolicyIntrusionDetectionStateType', - 'FirewallPolicyIntrusionDetectionProtocol') + 'FirewallPolicyIntrusionDetectionProtocol', 'AzureFirewallSkuTier') firewall_name_type = CLIArgumentType(options_list=['--firewall-name', '-f'], metavar='NAME', help='Azure Firewall name.', id_part='name', completer=get_resource_name_completion_list('Microsoft.Network/azureFirewalls')) collection_name_type = CLIArgumentType(options_list=['--collection-name', '-c'], help='Name of the rule collection.', id_part='child_name_1') @@ -58,6 +58,7 @@ def load_arguments(self, _): c.argument('virtual_hub', options_list=['--virtual-hub', '--vhub'], help='Name or ID of the virtualHub to which the firewall belongs.', validator=validate_virtual_hub) + c.argument('tier', arg_type=get_enum_type(AzureFirewallSkuTier, AzureFirewallSkuTier.standard), help='Tier of an azure firewall. --tier will take effect only when --sku is set') c.argument('sku', arg_type=get_enum_type(['AZFW_VNet', 'AZFW_Hub']), help='SKU of Azure firewall. This field cannot be updated after the creation. ' 'The default sku in server end is AZFW_VNet. ' 'If you want to attach azure firewall to vhub, you should set sku to AZFW_Hub.') diff --git a/src/azure-firewall/azext_firewall/custom.py b/src/azure-firewall/azext_firewall/custom.py index ea03d1d2fc7..d996159e03f 100644 --- a/src/azure-firewall/azext_firewall/custom.py +++ b/src/azure-firewall/azext_firewall/custom.py @@ -68,7 +68,7 @@ def create_azure_firewall(cmd, resource_group_name, azure_firewall_name, locatio tags=None, zones=None, private_ranges=None, firewall_policy=None, virtual_hub=None, sku=None, dns_servers=None, enable_dns_proxy=None, - threat_intel_mode=None, hub_public_ip_count=None, allow_active_ftp=None): + threat_intel_mode=None, hub_public_ip_count=None, allow_active_ftp=None, tier=None): if firewall_policy and any([enable_dns_proxy, dns_servers]): raise CLIError('usage error: firewall policy and dns settings cannot co-exist.') if sku and sku.lower() == 'azfw_hub' and not all([virtual_hub, hub_public_ip_count]): @@ -85,7 +85,7 @@ def create_azure_firewall(cmd, resource_group_name, azure_firewall_name, locatio 'AzureFirewallSku', 'HubIPAddresses', 'HubPublicIPAddresses') - sku_instance = AzureFirewallSku(name=sku, tier='Standard') + sku_instance = AzureFirewallSku(name=sku, tier=tier) firewall = AzureFirewall(location=location, tags=tags, zones=zones, diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_tier.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_tier.yaml new file mode 100644 index 00000000000..dd21dbf0af0 --- /dev/null +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_tier.yaml @@ -0,0 +1,222 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --tier + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_tier000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_tier000001","name":"test_azure_firewall_tier000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:02:37Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '433' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:02:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "eastus2euap", "properties": {"sku": {"name": "AZFW_VNet", + "tier": "Premium"}, "additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + Content-Length: + - '120' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --sku --tier + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_tier000001/providers/Microsoft.Network/azureFirewalls/af?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_tier000001/providers/Microsoft.Network/azureFirewalls/af\",\r\n + \ \"etag\": \"W/\\\"6c5a01fb-7204-486e-b253-524feaf6bd7c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Premium\"\r\n },\r\n + \ \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n + \ \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/cc672bb2-9a5f-497c-a805-fc0dbc4f1e76?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '692' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:02:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7542f0a1-2646-4230-9851-9c8e8a936ff2 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --tier + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/cc672bb2-9a5f-497c-a805-fc0dbc4f1e76?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8ce2c9e6-e772-4b41-9ec0-e91e8abf03f5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku --tier + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_tier000001/providers/Microsoft.Network/azureFirewalls/af?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_tier000001/providers/Microsoft.Network/azureFirewalls/af\",\r\n + \ \"etag\": \"W/\\\"681e3afd-4a06-40db-a9e5-e1e7c5d6de1f\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Premium\"\r\n },\r\n + \ \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n + \ \"ipConfigurations\": [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '693' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:03:00 GMT + etag: + - W/"681e3afd-4a06-40db-a9e5-e1e7c5d6de1f" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 27e70576-b871-4a19-906c-e11bfdebd4b0 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml index 2ae4a1b4daa..614d69d26dd 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-11T01:03:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:57 GMT + - Sun, 11 Apr 2021 01:03:42 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -71,7 +71,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"916f1a93-b4bf-4f78-803e-9ca848ea42d6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"39b18ac0-c653-443f-9c54-eadc8467733b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -80,7 +80,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ac589f65-8274-4065-a389-52a539b63839?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c6ddf592-5a63-4a8b-9e71-eea35e85ed67?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:05 GMT + - Sun, 11 Apr 2021 01:03:52 GMT expires: - '-1' pragma: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5d92f94-208b-4c49-831c-d12cfb3fe76d + - 61fe6376-c503-4457-b6f5-9a553b26588c x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -121,10 +121,10 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ac589f65-8274-4065-a389-52a539b63839?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c6ddf592-5a63-4a8b-9e71-eea35e85ed67?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:16 GMT + - Sun, 11 Apr 2021 01:04:02 GMT expires: - '-1' pragma: @@ -153,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c564486-9ef1-4998-a35c-beb338146d2b + - 5e9b1807-b8d0-48c1-8095-a33d3810eb3f status: code: 200 message: OK @@ -171,14 +171,14 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"b875d444-7491-44c2-9717-9a0411fa8a38\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4cdb6911-aff4-426b-828e-b6b85b2bd016\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -191,9 +191,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:16 GMT + - Sun, 11 Apr 2021 01:04:03 GMT etag: - - W/"b875d444-7491-44c2-9717-9a0411fa8a38" + - W/"4cdb6911-aff4-426b-828e-b6b85b2bd016" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 069eb25f-131c-456e-9188-4d031a0817ba + - c8987979-5102-461f-bc80-32fe789d720f status: code: 200 message: OK @@ -233,8 +233,8 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"c66da45f-936f-4f92-b409-f806bb78feb6\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9a9bc615-762f-46f8-8393-ee5c129e9233\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -254,7 +254,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -262,7 +262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:25 GMT + - Sun, 11 Apr 2021 01:04:15 GMT expires: - '-1' pragma: @@ -275,9 +275,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d880f7c4-6f9b-4c1a-a663-01622200ce8f + - a58b86d6-4875-46bf-994e-042c67d4e4a9 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 201 message: Created @@ -295,10 +295,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -310,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:37 GMT + - Sun, 11 Apr 2021 01:04:25 GMT expires: - '-1' pragma: @@ -327,7 +327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7bb38ba7-b712-467f-a4a3-844ea155f384 + - 1f072243-116b-48f8-8541-4453c8780e74 status: code: 200 message: OK @@ -345,10 +345,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:47 GMT + - Sun, 11 Apr 2021 01:04:36 GMT expires: - '-1' pragma: @@ -377,7 +377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2777a635-8285-4ee5-936f-92df8209ce3d + - bcb2b306-c8f4-4671-82fd-4eb2a9324ce4 status: code: 200 message: OK @@ -395,10 +395,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:54:07 GMT + - Sun, 11 Apr 2021 01:04:56 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 55df65c1-3a63-4323-b9be-8f729e896291 + - 0a738743-8b87-4fa5-87e5-a83fb6d19b65 status: code: 200 message: OK @@ -445,10 +445,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:54:29 GMT + - Sun, 11 Apr 2021 01:05:17 GMT expires: - '-1' pragma: @@ -477,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15e1b984-7cc6-46cc-b243-df770c674bcf + - be0a1ca7-8c4b-405a-8d5f-4f36b9f54790 status: code: 200 message: OK @@ -495,10 +495,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:55:09 GMT + - Sun, 11 Apr 2021 01:05:57 GMT expires: - '-1' pragma: @@ -527,7 +527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49853d83-c687-40d3-a827-92fe5a43a34f + - 8362433d-f7fd-4d74-860b-58860b0761fe status: code: 200 message: OK @@ -545,10 +545,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -560,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:55:49 GMT + - Sun, 11 Apr 2021 01:06:38 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9765c051-ec77-4a0d-ad92-9f7cba2e8ad2 + - 3560c656-7da0-4c11-a9cf-9d133cdfa157 status: code: 200 message: OK @@ -595,10 +595,60 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Sun, 11 Apr 2021 01:07:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cd224187-ae78-4a93-901b-1fe4d63c03f1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -610,7 +660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:10 GMT + - Sun, 11 Apr 2021 01:10:39 GMT expires: - '-1' pragma: @@ -627,7 +677,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e74808d7-6bc3-4829-b969-f360616c227e + - 85e100f9-cd0b-4ef3-8128-d05f274aafca status: code: 200 message: OK @@ -645,14 +695,14 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"d788b164-abf1-4f45-976b-a006e2aa8b58\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"be853a60-9a2b-42d7-87ed-adc86ca79e93\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -668,7 +718,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:11 GMT + - Sun, 11 Apr 2021 01:10:40 GMT expires: - '-1' pragma: @@ -685,7 +735,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - db531e4e-abae-4efa-b5ee-f4b992df029e + - a1e283b2-7bb8-4f64-912d-62f9567f8e27 status: code: 200 message: OK @@ -703,15 +753,15 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-11T01:03:38Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -720,7 +770,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:11 GMT + - Sun, 11 Apr 2021 01:10:40 GMT expires: - '-1' pragma: @@ -754,8 +804,8 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -763,7 +813,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"d1a934bc-e015-46bb-a411-3115f25003de\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3b08713e-704f-44ab-b328-1224cb59253c\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -775,7 +825,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -783,7 +833,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:21 GMT + - Sun, 11 Apr 2021 01:10:51 GMT expires: - '-1' pragma: @@ -796,9 +846,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3c37b04-200d-48ce-b7d9-b6341b8ec6df + - f7d55b02-c6ca-4291-9576-6628508af8aa x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 201 message: Created @@ -816,10 +866,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -831,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:31 GMT + - Sun, 11 Apr 2021 01:11:01 GMT expires: - '-1' pragma: @@ -848,7 +898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1dc79dea-edf1-4f5b-979a-89a07910d07b + - 47da974b-da92-464c-91ef-8f4c9cc1cb48 status: code: 200 message: OK @@ -866,10 +916,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -881,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:42 GMT + - Sun, 11 Apr 2021 01:11:12 GMT expires: - '-1' pragma: @@ -898,7 +948,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ad6dd6a-e735-44fb-ace8-9d0a4f4e0489 + - 0fc0b717-08ae-4b5a-9eed-9bb3938f0003 status: code: 200 message: OK @@ -916,10 +966,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -931,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:58:02 GMT + - Sun, 11 Apr 2021 01:11:33 GMT expires: - '-1' pragma: @@ -948,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3372252-cbb5-4b48-8899-1684ac34ea1d + - 33eeeffd-777c-496a-b546-2d8cf1595152 status: code: 200 message: OK @@ -966,10 +1016,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -981,7 +1031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:58:22 GMT + - Sun, 11 Apr 2021 01:11:53 GMT expires: - '-1' pragma: @@ -998,7 +1048,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 88ec2ffa-ccca-40ad-8f17-919945b28b8c + - a3252f40-b480-472c-9b39-9006b5896dff status: code: 200 message: OK @@ -1016,10 +1066,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1031,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:02 GMT + - Sun, 11 Apr 2021 01:12:33 GMT expires: - '-1' pragma: @@ -1048,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8cc139e2-c3ed-4868-8ad0-13b607737227 + - 466cc87e-1ad6-40c5-a54e-eccf4467946e status: code: 200 message: OK @@ -1066,10 +1116,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1081,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:43 GMT + - Sun, 11 Apr 2021 01:13:14 GMT expires: - '-1' pragma: @@ -1098,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c5ea45ce-7dc8-4942-b4bc-e201769580d6 + - d43e194b-9dc0-4e62-bc78-99978a0bb973 status: code: 200 message: OK @@ -1116,10 +1166,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1131,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:01:03 GMT + - Sun, 11 Apr 2021 01:14:34 GMT expires: - '-1' pragma: @@ -1148,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb20d3ae-fc2c-4903-b251-5257e3723427 + - 658b28d5-c981-4fbf-a4e4-312f04d7adaa status: code: 200 message: OK @@ -1166,10 +1216,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1181,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:03:44 GMT + - Sun, 11 Apr 2021 01:17:15 GMT expires: - '-1' pragma: @@ -1198,7 +1248,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 18aec7f9-a1fb-4b1e-b9f9-0dd9a55a949e + - bfacfa8d-b3ba-4f07-a78e-327ab208fd8c status: code: 200 message: OK @@ -1216,10 +1266,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1231,7 +1281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:05:24 GMT + - Sun, 11 Apr 2021 01:18:56 GMT expires: - '-1' pragma: @@ -1248,7 +1298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7083e252-c0d3-4093-8260-d5788f0b0fa1 + - cefe7740-80b3-43d2-a3c9-2a264243528e status: code: 200 message: OK @@ -1266,10 +1316,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1281,7 +1331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:07:05 GMT + - Sun, 11 Apr 2021 01:20:36 GMT expires: - '-1' pragma: @@ -1298,7 +1348,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 08b28e07-c2e8-4084-8e2e-407bd21abcda + - 1e2d5c9a-b5d9-48db-9427-4f5916a19467 status: code: 200 message: OK @@ -1316,10 +1366,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1331,7 +1381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:08:45 GMT + - Sun, 11 Apr 2021 01:22:17 GMT expires: - '-1' pragma: @@ -1348,7 +1398,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 54fcf849-8c09-4764-976b-cb20c084ff9c + - 9438f638-854f-41cd-8503-2eaa8e576b74 status: code: 200 message: OK @@ -1366,10 +1416,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1381,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:10:26 GMT + - Sun, 11 Apr 2021 01:23:58 GMT expires: - '-1' pragma: @@ -1398,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2998dba4-769b-4b79-a449-664d427f6f1d + - 506d2d05-badf-4d07-9f98-ec25dec1830c status: code: 200 message: OK @@ -1416,10 +1466,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1431,7 +1481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:12:06 GMT + - Sun, 11 Apr 2021 01:25:38 GMT expires: - '-1' pragma: @@ -1448,7 +1498,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5a36c13d-23a8-4af6-830c-9cee2daa0f30 + - b7c4bcb7-dbc3-4cf7-b5c7-4756c7c40d7b status: code: 200 message: OK @@ -1466,22 +1516,22 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:13:47 GMT + - Sun, 11 Apr 2021 01:27:19 GMT expires: - '-1' pragma: @@ -1498,7 +1548,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c548398b-5147-41cc-aff8-1a8ebede3aa1 + - 6961963a-f80e-43e0-ad0d-a73414feef3b status: code: 200 message: OK @@ -1516,34 +1566,22 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n - \ }\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '992' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:13:48 GMT - etag: - - W/"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc" + - Sun, 11 Apr 2021 01:28:59 GMT expires: - '-1' pragma: @@ -1560,7 +1598,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 86c4fc82-1d64-409f-bfff-0480c1ac8105 + - 3114defa-0021-4233-9c79-2017b0b63080 status: code: 200 message: OK @@ -1572,42 +1610,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n - \ }\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '992' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:13:49 GMT - etag: - - W/"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc" + - Sun, 11 Apr 2021 01:30:39 GMT expires: - '-1' pragma: @@ -1624,59 +1648,40 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0ffff77-a7df-4a53-99fb-3702a813cb87 + - 53714fa8-6aea-4e7b-b67a-991dc5b17fdd status: code: 200 message: OK - request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "eastus2euap", "properties": {"hubIPAddresses": {"publicIPs": {"addresses": - [{"address": "20.39.24.98"}], "count": 1}, "privateIPAddress": "10.0.0.132"}, - "sku": {"name": "AZFW_Hub", "tier": "Standard"}, "additionalProperties": {}}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive - Content-Length: - - '443' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"ca290d3f-ca22-4ede-ab61-18a0207b19b0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": - \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n - \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n - \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 cache-control: - no-cache content-length: - - '752' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:13:50 GMT + - Sun, 11 Apr 2021 01:32:20 GMT expires: - '-1' pragma: @@ -1693,9 +1698,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97ae91ba-0470-4bda-bbfa-d9900723e96d - x-ms-ratelimit-remaining-subscription-writes: - - '1189' + - 2207db75-c483-47a0-a926-16ec3174f5ed status: code: 200 message: OK @@ -1707,16 +1710,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1728,7 +1731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:14:01 GMT + - Sun, 11 Apr 2021 01:34:01 GMT expires: - '-1' pragma: @@ -1745,7 +1748,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c0ff8805-5925-44ea-a3bd-c3f914bbf6c3 + - d5c94b1e-3832-48e8-8724-b9bae4dfd86b status: code: 200 message: OK @@ -1757,16 +1760,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1778,7 +1781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:14:11 GMT + - Sun, 11 Apr 2021 01:35:42 GMT expires: - '-1' pragma: @@ -1795,7 +1798,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53e59b1c-a668-4b4e-adbe-e516a088d655 + - 5b8963e8-6a05-474d-a622-5237922f3b92 status: code: 200 message: OK @@ -1807,16 +1810,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1828,7 +1831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:14:31 GMT + - Sun, 11 Apr 2021 01:37:23 GMT expires: - '-1' pragma: @@ -1845,7 +1848,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 64a81a35-d88e-4757-9b40-d4dfb693e325 + - 58d29f9f-b87c-4c96-bb8e-58e7b70a37d9 status: code: 200 message: OK @@ -1857,16 +1860,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1878,7 +1881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:15:11 GMT + - Sun, 11 Apr 2021 01:39:35 GMT expires: - '-1' pragma: @@ -1895,7 +1898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 815f2928-e502-4fb8-93f6-bf584ba337d2 + - d4d2c353-672b-4082-873f-195bd9585c2e status: code: 200 message: OK @@ -1907,16 +1910,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1928,7 +1931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:16:32 GMT + - Sun, 11 Apr 2021 01:41:16 GMT expires: - '-1' pragma: @@ -1945,7 +1948,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4ce2f5fd-b202-4c6d-ae0e-7753b483e917 + - 89985401-667c-4e48-8771-11218dcea09d status: code: 200 message: OK @@ -1957,16 +1960,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1978,7 +1981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:19:13 GMT + - Sun, 11 Apr 2021 01:42:57 GMT expires: - '-1' pragma: @@ -1995,7 +1998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f38bb448-c4c9-48ef-9648-5334f88179be + - 883fffb0-0941-40a5-88e3-5863f14b5804 status: code: 200 message: OK @@ -2007,16 +2010,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2028,7 +2031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:20:53 GMT + - Sun, 11 Apr 2021 01:44:37 GMT expires: - '-1' pragma: @@ -2045,7 +2048,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02fdecdb-353e-4d84-ac6e-b983fc293620 + - be902054-e23c-42ef-8e6a-9bba1cdff0a0 status: code: 200 message: OK @@ -2057,28 +2060,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:33 GMT + - Sun, 11 Apr 2021 01:46:18 GMT expires: - '-1' pragma: @@ -2095,7 +2098,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 94b722a5-fdbd-4c09-b2a7-b9cbf8cf01d7 + - 7fe1581e-a206-44ee-abaf-53a3c3187f5c status: code: 200 message: OK @@ -2107,38 +2110,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"5aa55c05-0890-4f69-8471-9003710dc1e0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": - \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n - \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n - \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '753' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:33 GMT - etag: - - W/"5aa55c05-0890-4f69-8471-9003710dc1e0" + - Sun, 11 Apr 2021 01:47:58 GMT expires: - '-1' pragma: @@ -2155,7 +2148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b97a413a-4f26-4440-acd6-3c0c3ee0b67a + - 8d468c62-b1f6-4b76-ae1f-a0df7b42a366 status: code: 200 message: OK @@ -2171,36 +2164,41 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub --allow-active-ftp + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '433' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:34 GMT + - Sun, 11 Apr 2021 01:49:38 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - 564e6fee-16c8-4799-9261-4e90f6354a2f status: code: 200 message: OK @@ -2212,88 +2210,78 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vwan create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --type + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '433' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:34 GMT + - Sun, 11 Apr 2021 01:51:19 GMT expires: - '-1' pragma: - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked vary: - Accept-Encoding x-content-type-options: - nosniff + x-ms-arm-service-request-id: + - fa979616-6823-4786-8d44-5d9d8241b371 status: code: 200 message: OK - request: - body: '{"location": "eastus2euap"}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vwan create + - network firewall create Connection: - keep-alive - Content-Length: - - '27' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -n -g --type + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n - \ \"etag\": \"W/\\\"3f1ca521-0cca-4e2f-958a-2ffe4ac2d267\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/242b35b3-3935-45b3-a4b0-8f3a4b1f5b58?api-version=2020-05-01 cache-control: - no-cache content-length: - - '580' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:47 GMT + - Sun, 11 Apr 2021 01:52:59 GMT expires: - '-1' pragma: @@ -2303,15 +2291,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25b16c4d-8785-49fa-a944-429bc225c89b - x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - eb5102a5-54cf-45c4-9593-7384ad1fe9de status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2320,28 +2310,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vwan create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --type + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/242b35b3-3935-45b3-a4b0-8f3a4b1f5b58?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:57 GMT + - Sun, 11 Apr 2021 01:54:40 GMT expires: - '-1' pragma: @@ -2358,7 +2348,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 391b06f2-909d-49a9-b49b-d18e96962247 + - f7fcdee1-b99d-43e6-91e3-43019e8b4827 status: code: 200 message: OK @@ -2370,35 +2360,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vwan create + - network firewall create Connection: - keep-alive ParameterSetName: - - -n -g --type + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n - \ \"etag\": \"W/\\\"d4ad56c6-da55-4a14-9d36-4f50dd786c7b\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": - false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": - \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '581' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:22:58 GMT - etag: - - W/"d4ad56c6-da55-4a14-9d36-4f50dd786c7b" + - Sun, 11 Apr 2021 01:56:22 GMT expires: - '-1' pragma: @@ -2415,59 +2398,40 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fb9ea0e2-ed14-49da-9308-555134d24b13 + - 047c5e92-e1d7-4397-862f-9722f225f5a2 status: code: 200 message: OK - request: - body: '{"location": "eastus2euap", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2"}, - "addressPrefix": "10.0.0.0/24", "sku": "Standard"}}' + body: null headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive - Content-Length: - - '315' - Content-Type: - - application/json; charset=utf-8 ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n - \ \"etag\": \"W/\\\"95157c32-7044-4043-88d7-b72e4f924e19\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n - \ }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '903' + - '30' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:23:06 GMT + - Sun, 11 Apr 2021 01:58:02 GMT expires: - '-1' pragma: @@ -2477,15 +2441,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7f2c6022-963b-4fc3-9e84-edecf8be641b - x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - f2e9a2f1-22f2-45ec-b8ba-602c01e25f5c status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2494,16 +2460,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2515,7 +2481,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:23:17 GMT + - Sun, 11 Apr 2021 01:59:43 GMT expires: - '-1' pragma: @@ -2532,7 +2498,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75488856-e37a-43e0-b9e9-6834319b9c03 + - c1abae43-71b7-410e-9cb8-d8aab6ac2e4f status: code: 200 message: OK @@ -2544,16 +2510,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2565,7 +2531,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:23:27 GMT + - Sun, 11 Apr 2021 02:01:23 GMT expires: - '-1' pragma: @@ -2582,7 +2548,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 19693df5-8a13-47ff-8bf7-25e7beb4091e + - b84d9c75-37c9-41ce-a1b0-c5273f305b3b status: code: 200 message: OK @@ -2594,16 +2560,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2615,7 +2581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:23:47 GMT + - Sun, 11 Apr 2021 02:03:04 GMT expires: - '-1' pragma: @@ -2632,7 +2598,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9fc8352d-81dd-48a1-b35b-1724e8c3976b + - 0cbaa10b-f614-4e8e-82ad-327cdd330869 status: code: 200 message: OK @@ -2644,16 +2610,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2665,7 +2631,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:24:07 GMT + - Sun, 11 Apr 2021 02:04:45 GMT expires: - '-1' pragma: @@ -2682,7 +2648,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8388216d-4b84-43cf-92fd-73bc2040c661 + - 9e8541c3-a646-4982-869e-f75d469007cc status: code: 200 message: OK @@ -2694,16 +2660,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2715,7 +2681,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:24:48 GMT + - Sun, 11 Apr 2021 02:06:26 GMT expires: - '-1' pragma: @@ -2732,7 +2698,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a97e2413-3a32-40e2-91da-467a86071001 + - edf7c0f8-6310-486b-9984-43126d3f6725 status: code: 200 message: OK @@ -2744,16 +2710,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vwan --address-prefix -l --sku + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2765,7 +2731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:25:28 GMT + - Sun, 11 Apr 2021 02:08:06 GMT expires: - '-1' pragma: @@ -2782,7 +2748,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9bcf182d-af15-41fe-9f78-8a5391c70f37 + - 1888ea2b-44f8-48a0-a9e4-e599cec003a0 status: code: 200 message: OK @@ -2794,710 +2760,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:26:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7ea2ed4f-82a3-47f9-8e1d-511a180932c6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 - response: - body: - string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n - \ \"etag\": \"W/\\\"69f5682d-eacf-4347-b34f-1dd79c3bbe11\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": - [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": - 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": - []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\"\r\n - \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n - \ }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '912' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:26:49 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - db60cc99-36bc-47ef-b360-269305134dae - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"5aa55c05-0890-4f69-8471-9003710dc1e0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": - \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n - \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n - \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '753' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:26:51 GMT - etag: - - W/"5aa55c05-0890-4f69-8471-9003710dc1e0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - de523231-f4d7-447b-a732-c62873d47d5a - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "eastus2euap", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2"}, - "hubIPAddresses": {"publicIPs": {"addresses": [{"address": "20.39.24.98"}], - "count": 1}, "privateIPAddress": "10.0.0.132"}, "sku": {"name": "AZFW_Hub", - "tier": "Standard"}, "additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - Content-Length: - - '664' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"a5219a95-aa4f-4695-bafa-0fccd4e137dc\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n - \ }\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '992' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:26:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 601a5064-ad26-43f2-8f24-8007ce1227ad - x-ms-ratelimit-remaining-subscription-writes: - - '1193' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:27:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 07ff8a5e-a791-4bab-a667-9e648c9a096e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:27:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 0dcbaef1-5321-4474-a2ec-5fd5f88048ec - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:27:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7c030a88-f68d-4209-8e96-9f0bc691b35f - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:28:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4ae8c195-3332-450c-93e8-7f7f8ab90804 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:29:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a82a437f-fe5e-4c9e-bc40-83ef2b1a1c59 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:32:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - adb8b202-602e-4215-821a-c2e4adfdf4b8 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e80c706a-cce6-41b5-b3a1-aa96cde78056 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:35:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e8d36080-13cb-4ad2-9949-dcf6e08b7bec - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:37:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - d4d50984-ac81-4ef0-af10-f5195a3adcef - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3509,7 +2781,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:38:56 GMT + - Sun, 11 Apr 2021 02:09:46 GMT expires: - '-1' pragma: @@ -3526,7 +2798,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c9d72a8-3b2c-4b60-8637-b9fd89e2c7b2 + - 80078fb7-99a2-4238-bd2e-082af9551d9a status: code: 200 message: OK @@ -3538,16 +2810,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3559,7 +2831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:40:37 GMT + - Sun, 11 Apr 2021 02:11:27 GMT expires: - '-1' pragma: @@ -3576,7 +2848,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6bab0900-9f58-4851-9d5e-0b8f58a9c12b + - f4ae228b-284e-4e77-8266-0939f72c2af8 status: code: 200 message: OK @@ -3588,16 +2860,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -3609,57 +2881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:42:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c41f99ae-d4bb-4d67-a50a-fac8acf1926c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall update - Connection: - - keep-alive - ParameterSetName: - - -g -n --vhub - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 18 Jan 2021 10:43:57 GMT + - Sun, 11 Apr 2021 02:13:08 GMT expires: - '-1' pragma: @@ -3676,7 +2898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 265847f5-46ff-4f83-a5f3-30f97c79008c + - 0fcc5ec1-bea9-4a8d-9d6d-f06f4eee6aa9 status: code: 200 message: OK @@ -3688,40 +2910,29 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall update + - network firewall create Connection: - keep-alive ParameterSetName: - - -g -n --vhub + - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"9f89a02e-bb12-4657-af7b-a2dd9077a4a9\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": - {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n - \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n - \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.47.144.61\"\r\n }\r\n ],\r\n \"count\": 1\r\n - \ }\r\n }\r\n }\r\n}" + string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InternalServerError\",\r\n + \ \"message\": \"An error occurred.\",\r\n \"details\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '994' + - '139' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:43:57 GMT - etag: - - W/"9f89a02e-bb12-4657-af7b-a2dd9077a4a9" + - Sun, 11 Apr 2021 02:14:48 GMT expires: - '-1' pragma: @@ -3738,7 +2949,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a36b218a-5186-4c6e-a846-8bcf3a3ed972 + - 2b633270-4615-4ffd-acd9-ebd29635c0e3 status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py index 92e509f7a44..212fcfd6916 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py +++ b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py @@ -812,3 +812,11 @@ def test_firewall_with_dns_proxy(self, resource_group): self.assertEqual(show_data['Network.DNS.EnableProxy'], 'true') self.cmd('network firewall delete -g {rg} --name {fw}') + + @ResourceGroupPreparer(name_prefix='test_azure_firewall_tier', location='eastus2euap') + def test_azure_firewall_tier(self, resource_group): + self.kwargs.update({ + 'rg': resource_group + }) + self.cmd('network firewall create -g {rg} -n af --sku AZFW_VNet --tier Premium', + checks=self.check('sku.tier', 'Premium')) From 77c86585cfb1293c348c0c460f36683bb08e0187 Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Mon, 12 Apr 2021 14:11:17 +0800 Subject: [PATCH 2/5] history --- src/azure-firewall/HISTORY.rst | 10 ++++++++++ src/azure-firewall/setup.py | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/src/azure-firewall/HISTORY.rst b/src/azure-firewall/HISTORY.rst index 01a269d5410..639263dfb21 100644 --- a/src/azure-firewall/HISTORY.rst +++ b/src/azure-firewall/HISTORY.rst @@ -2,6 +2,16 @@ Release History =============== + +0.10.0 +++++++ +* `az network firewall create`: Add new parameter `--tier` + +0.9.0 +++++++ +* `az network firewall policy rule-collection-group collection add-filter-collection`: Add parameter 'web-categories' +* `az network firewall policy rule-collection-group collection rule add`: Add parameter 'web-categories' + 0.8.0 ++++++ * `az network firewall policy create`: support `--sku` to create premium tier firewall policy diff --git a/src/azure-firewall/setup.py b/src/azure-firewall/setup.py index 36251f2e9ee..4d6053a1b29 100644 --- a/src/azure-firewall/setup.py +++ b/src/azure-firewall/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "0.9.0" +VERSION = "0.10.0" CLASSIFIERS = [ 'Development Status :: 4 - Beta', From 30d30e80ccc517bcf8f5bc655f38b1fb4fd3236d Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Mon, 12 Apr 2021 15:47:31 +0800 Subject: [PATCH 3/5] test --- .../test_azure_firewall_ip_config.yaml | 826 +++--- ...t_azure_firewall_management_ip_config.yaml | 2213 ++--------------- ...t_azure_firewall_with_firewall_policy.yaml | 953 ++++--- 3 files changed, 1263 insertions(+), 2729 deletions(-) diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml index a18ebe01992..399e0fb73ef 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_ip_config.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:51:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:51:41 GMT + - Mon, 12 Apr 2021 06:17:46 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -71,7 +71,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"78b15b66-48d8-402e-9498-87d195ee71ac\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"032a608f-a9a3-42f8-9aa8-e585aa7371cf\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -82,7 +82,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e00ee2b-4a1f-4943-be6f-38506ace2c74?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dccc5551-2ffa-4659-8aa5-c69489427d4e?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:51:47 GMT + - Mon, 12 Apr 2021 06:17:53 GMT expires: - '-1' pragma: @@ -103,9 +103,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c2f691c0-a574-41fd-85ed-a3992f6f5f16 + - b18d3fa3-2954-44fe-acd9-3c9313f9304b x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -123,10 +123,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e00ee2b-4a1f-4943-be6f-38506ace2c74?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dccc5551-2ffa-4659-8aa5-c69489427d4e?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -138,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:51:57 GMT + - Mon, 12 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cde890a1-beac-46ea-b814-3b63e4dfbd40 + - b4e51cd7-22b9-4589-a6ff-7aa6d6a1fd83 status: code: 200 message: OK @@ -173,14 +173,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"db8551a3-28a6-4259-9d2c-26818eb130ed\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c70769d6-0267-4adf-bb59-fdb9f8aaa363\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -195,9 +195,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:51:57 GMT + - Mon, 12 Apr 2021 06:18:03 GMT etag: - - W/"db8551a3-28a6-4259-9d2c-26818eb130ed" + - W/"c70769d6-0267-4adf-bb59-fdb9f8aaa363" expires: - '-1' pragma: @@ -214,7 +214,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ce9326c-9494-4981-825c-e5ff07ffe998 + - 15aab41c-d01a-4465-a2de-055cac31e4fb status: code: 200 message: OK @@ -232,15 +232,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:51:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:51:58 GMT + - Mon, 12 Apr 2021 06:18:05 GMT expires: - '-1' pragma: @@ -282,15 +282,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"3fa312a1-06c5-4f80-87cf-ddb274dd4317\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"017116cc-4116-4baf-9838-0bd2a9c593b2\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7d0fcb7a-71e9-4cc6-81ea-1a8ddb31e541\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"01e37316-e884-4cb0-b6b5-dda0e4cc3656\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -299,7 +299,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0ac5cc7-0a02-4dd1-9e54-ac0e22d6229e?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e41c6653-12c7-46af-a2d9-32a3fb1aa77d?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -307,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:03 GMT + - Mon, 12 Apr 2021 06:18:10 GMT expires: - '-1' pragma: @@ -320,9 +320,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fc498671-5614-44d8-b8a5-1299d05781b4 + - d188a521-315e-4b3c-b78e-baa36e3abab8 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -340,9 +340,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d0ac5cc7-0a02-4dd1-9e54-ac0e22d6229e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/e41c6653-12c7-46af-a2d9-32a3fb1aa77d?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -354,7 +354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:05 GMT + - Mon, 12 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -371,7 +371,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b9d0beb-26bc-4c51-9810-36dd1e21c6c4 + - 39936cf1-9257-45dc-acb1-3a7a64caee32 status: code: 200 message: OK @@ -389,16 +389,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"9e4f0661-cbb3-4cfb-96b3-27cc32c44a3f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"d3cc97df-004f-467b-b2d5-65e9a81dd54e\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7d0fcb7a-71e9-4cc6-81ea-1a8ddb31e541\",\r\n \"ipAddress\": - \"40.78.124.166\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"01e37316-e884-4cb0-b6b5-dda0e4cc3656\",\r\n \"ipAddress\": + \"13.64.129.2\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -406,13 +406,13 @@ interactions: cache-control: - no-cache content-length: - - '721' + - '719' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:05 GMT + - Mon, 12 Apr 2021 06:18:12 GMT etag: - - W/"9e4f0661-cbb3-4cfb-96b3-27cc32c44a3f" + - W/"d3cc97df-004f-467b-b2d5-65e9a81dd54e" expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f83cc449-4300-4374-9e8b-10a17d85bba4 + - 74970a33-88d7-43c2-8374-c94a54d515c7 status: code: 200 message: OK @@ -447,15 +447,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:51:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -464,7 +464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:05 GMT + - Mon, 12 Apr 2021 06:18:12 GMT expires: - '-1' pragma: @@ -497,15 +497,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"20b3c2e9-e237-4bb0-8b1a-c83e150aaa2f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"54ba5d98-a4e8-4696-858e-394f2feabcd5\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2e0d26e0-82c1-4e2f-bf2f-4add3df08c1d\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"1be4503d-e8d4-4698-bb4e-b9c4c2f5ade1\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -514,7 +514,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/513ad546-424c-4cef-a453-24e846080df0?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/690b6494-3d09-43dc-8bd9-de3b2e6e6a0c?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:09 GMT + - Mon, 12 Apr 2021 06:18:16 GMT expires: - '-1' pragma: @@ -535,9 +535,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5449ee68-a636-4fed-9523-72cd9d7ebfe3 + - dff5a3cb-6c7b-4f54-a89d-8e4d28e82c20 x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1198' status: code: 201 message: Created @@ -555,9 +555,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/513ad546-424c-4cef-a453-24e846080df0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/690b6494-3d09-43dc-8bd9-de3b2e6e6a0c?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:10 GMT + - Mon, 12 Apr 2021 06:18:17 GMT expires: - '-1' pragma: @@ -586,7 +586,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c12b5aed-5319-4acf-8299-33692e181bae + - 7d634217-25fd-4e03-9085-8b48dd8b83cb status: code: 200 message: OK @@ -604,16 +604,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"647eff37-fed7-449c-bb49-a3f7ccba5a9e\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"be92a20f-3f07-48a3-895c-e4fda5801c24\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2e0d26e0-82c1-4e2f-bf2f-4add3df08c1d\",\r\n \"ipAddress\": - \"40.78.125.33\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"1be4503d-e8d4-4698-bb4e-b9c4c2f5ade1\",\r\n \"ipAddress\": + \"13.64.110.97\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -625,9 +625,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:11 GMT + - Mon, 12 Apr 2021 06:18:18 GMT etag: - - W/"647eff37-fed7-449c-bb49-a3f7ccba5a9e" + - W/"be92a20f-3f07-48a3-895c-e4fda5801c24" expires: - '-1' pragma: @@ -644,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f3d491e3-e5db-4d87-a8ee-ecbfe07e37d8 + - b11d3710-db43-44e7-baef-0591266fbf1f status: code: 200 message: OK @@ -662,15 +662,15 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:51:39Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001","name":"cli_test_azure_firewall_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -679,7 +679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:11 GMT + - Mon, 12 Apr 2021 06:18:18 GMT expires: - '-1' pragma: @@ -713,40 +713,40 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"c1c19982-00e3-455f-908b-f42012524cf5\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c5bc0e4a-56d6-46b1-a7ad-4eab3a0bd30b\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"33e63aa5-2532-41a7-8b43-e95e706c077f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"311e098c-dd18-4847-b73a-588da287058d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"c1c19982-00e3-455f-908b-f42012524cf5\\\"\",\r\n + \ \"etag\": \"W/\\\"c5bc0e4a-56d6-46b1-a7ad-4eab3a0bd30b\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54ce53fb-aab7-4d0c-a7e1-bd5fe009167c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3060a28a-4a29-4288-b396-b08c7d71dc87?api-version=2020-11-01 cache-control: - no-cache content-length: - - '1464' + - '1430' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:14 GMT + - Mon, 12 Apr 2021 06:18:23 GMT expires: - '-1' pragma: @@ -759,9 +759,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee151a59-6c6a-46a7-a7fb-ebcc7c80f6ed + - 52a7b936-e5da-4dbb-ae0e-41ab2f5eff2c x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1199' status: code: 201 message: Created @@ -779,9 +779,9 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54ce53fb-aab7-4d0c-a7e1-bd5fe009167c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/3060a28a-4a29-4288-b396-b08c7d71dc87?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -793,7 +793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:18 GMT + - Mon, 12 Apr 2021 06:18:27 GMT expires: - '-1' pragma: @@ -810,7 +810,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 195862f1-f5a9-45e5-961b-2850a3be4326 + - 4b8f55a8-4787-44ae-9b67-301b00f3b594 status: code: 200 message: OK @@ -828,38 +828,38 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"02c4b0cb-3df1-4895-82d9-c94702949875\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eae36093-a780-41fb-9ebf-fe7a555412e6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"33e63aa5-2532-41a7-8b43-e95e706c077f\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"311e098c-dd18-4847-b73a-588da287058d\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"02c4b0cb-3df1-4895-82d9-c94702949875\\\"\",\r\n + \ \"etag\": \"W/\\\"eae36093-a780-41fb-9ebf-fe7a555412e6\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1466' + - '1432' content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:18 GMT + - Mon, 12 Apr 2021 06:18:27 GMT etag: - - W/"02c4b0cb-3df1-4895-82d9-c94702949875" + - W/"eae36093-a780-41fb-9ebf-fe7a555412e6" expires: - '-1' pragma: @@ -876,7 +876,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 194a5133-9c36-4843-b8bc-2675c6637362 + - 06165969-3ad1-461b-8a55-26f0e850e008 status: code: 200 message: OK @@ -894,8 +894,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -903,7 +903,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"db8551a3-28a6-4259-9d2c-26818eb130ed\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c70769d6-0267-4adf-bb59-fdb9f8aaa363\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -918,9 +918,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:20 GMT + - Mon, 12 Apr 2021 06:18:28 GMT etag: - - W/"db8551a3-28a6-4259-9d2c-26818eb130ed" + - W/"c70769d6-0267-4adf-bb59-fdb9f8aaa363" expires: - '-1' pragma: @@ -937,7 +937,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63483db7-20bc-44ff-b92c-272a7d7e1d91 + - 53cc31c1-30a1-4278-9393-56a049459029 status: code: 200 message: OK @@ -965,8 +965,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -974,13 +974,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"10678866-9205-48d9-8e19-c3ec3b2b0269\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"16e556ae-213f-4848-9862-8b060543b394\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"10678866-9205-48d9-8e19-c3ec3b2b0269\\\"\",\r\n + \ \"etag\": \"W/\\\"16e556ae-213f-4848-9862-8b060543b394\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -991,7 +991,7 @@ interactions: []\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -999,7 +999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:20 GMT + - Mon, 12 Apr 2021 06:18:28 GMT expires: - '-1' pragma: @@ -1016,9 +1016,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 36fe0193-562e-4d42-a01a-f21f1df21952 + - 6bd93f6f-d152-4d09-9ef5-b5eba23a8da5 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1036,10 +1036,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1051,7 +1051,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:30 GMT + - Mon, 12 Apr 2021 06:18:39 GMT expires: - '-1' pragma: @@ -1068,7 +1068,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cfe3de90-6133-4edf-ab3a-087df97aae2e + - e73976bf-9285-4841-a476-1eac010d4657 status: code: 200 message: OK @@ -1086,10 +1086,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1101,7 +1101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:52:41 GMT + - Mon, 12 Apr 2021 06:18:49 GMT expires: - '-1' pragma: @@ -1118,7 +1118,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6270177c-c840-413e-8311-198e2780e09a + - db3e0926-df28-4c99-9e11-369b8bc5b8df status: code: 200 message: OK @@ -1136,10 +1136,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1151,7 +1151,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:01 GMT + - Mon, 12 Apr 2021 06:19:09 GMT expires: - '-1' pragma: @@ -1168,7 +1168,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 44fea18a-e3ce-442c-87d4-4194c2c559ab + - afe3f445-ce0f-4eca-bc2e-7d530e0b352a status: code: 200 message: OK @@ -1186,10 +1186,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1201,7 +1201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:53:43 GMT + - Mon, 12 Apr 2021 06:19:50 GMT expires: - '-1' pragma: @@ -1218,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8ea32e47-1999-4dbd-a9ff-7c2eefec2245 + - 6dab741e-d311-4403-8d40-6b828b4be360 status: code: 200 message: OK @@ -1236,10 +1236,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1251,7 +1251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:55:04 GMT + - Mon, 12 Apr 2021 06:21:10 GMT expires: - '-1' pragma: @@ -1268,7 +1268,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 263cb459-012b-4995-8966-e64b70ff6711 + - d05b0fc0-8b9b-48c1-9787-f5e4585d36d2 status: code: 200 message: OK @@ -1286,10 +1286,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fd0c2fb8-5a12-486c-a3ff-7b982801c132?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/36752db4-cf32-4b1a-b1c1-c5b2493182ba?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1301,7 +1301,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:44 GMT + - Mon, 12 Apr 2021 06:23:51 GMT expires: - '-1' pragma: @@ -1318,7 +1318,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 98526151-1cb6-4d1b-b6d2-dff35d5e8aae + - 4ed0527e-88b1-4a77-9f41-cdb0bd3b52fd status: code: 200 message: OK @@ -1336,20 +1336,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"87e0392a-7881-43c6-9afd-acef13e6d634\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eb403ce9-3930-4dad-a79b-0223f173a8b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"87e0392a-7881-43c6-9afd-acef13e6d634\\\"\",\r\n + \ \"etag\": \"W/\\\"eb403ce9-3930-4dad-a79b-0223f173a8b8\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1366,9 +1366,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:44 GMT + - Mon, 12 Apr 2021 06:23:51 GMT etag: - - W/"87e0392a-7881-43c6-9afd-acef13e6d634" + - W/"eb403ce9-3930-4dad-a79b-0223f173a8b8" expires: - '-1' pragma: @@ -1385,7 +1385,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 03b3aae8-d78c-4a2f-8e36-c345d2f4a30b + - 8b5dc556-1740-4b93-946e-cfc148287fb3 status: code: 200 message: OK @@ -1403,8 +1403,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -1412,13 +1412,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"87e0392a-7881-43c6-9afd-acef13e6d634\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eb403ce9-3930-4dad-a79b-0223f173a8b8\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"87e0392a-7881-43c6-9afd-acef13e6d634\\\"\",\r\n + \ \"etag\": \"W/\\\"eb403ce9-3930-4dad-a79b-0223f173a8b8\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1435,9 +1435,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:44 GMT + - Mon, 12 Apr 2021 06:23:52 GMT etag: - - W/"87e0392a-7881-43c6-9afd-acef13e6d634" + - W/"eb403ce9-3930-4dad-a79b-0223f173a8b8" expires: - '-1' pragma: @@ -1454,7 +1454,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 483cfc1b-9b7d-4dc6-bb07-86c38b54f718 + - ce8b75b4-a89c-4c90-be80-be49a15d88c7 status: code: 200 message: OK @@ -1483,8 +1483,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -1492,13 +1492,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"61280f50-e8ad-4642-9fa0-0cd07cb5cffd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d52d43f9-2b66-4e5c-bdcd-4f76dcc58fa5\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"61280f50-e8ad-4642-9fa0-0cd07cb5cffd\\\"\",\r\n + \ \"etag\": \"W/\\\"d52d43f9-2b66-4e5c-bdcd-4f76dcc58fa5\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1506,7 +1506,7 @@ interactions: \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"61280f50-e8ad-4642-9fa0-0cd07cb5cffd\\\"\",\r\n + \ \"etag\": \"W/\\\"d52d43f9-2b66-4e5c-bdcd-4f76dcc58fa5\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1516,7 +1516,7 @@ interactions: []\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58141024-e9cd-4197-9a2c-dc1496be6750?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a470e389-6dfc-44d2-9289-2d6416355486?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1524,7 +1524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:45 GMT + - Mon, 12 Apr 2021 06:23:52 GMT expires: - '-1' pragma: @@ -1541,9 +1541,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fbd04b9-8b3f-4815-8ea1-c3fe1d32b2c5 + - c0e907c3-04b1-45f1-ac28-4c84670bd6df x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1199' status: code: 200 message: OK @@ -1561,10 +1561,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58141024-e9cd-4197-9a2c-dc1496be6750?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a470e389-6dfc-44d2-9289-2d6416355486?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1576,7 +1576,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:57:56 GMT + - Mon, 12 Apr 2021 06:24:03 GMT expires: - '-1' pragma: @@ -1593,7 +1593,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5aa37143-205f-4075-b79c-957cc091d1ef + - ebcf2730-6aa4-4b3e-bdf3-ed51a88d6363 status: code: 200 message: OK @@ -1611,10 +1611,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58141024-e9cd-4197-9a2c-dc1496be6750?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a470e389-6dfc-44d2-9289-2d6416355486?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1626,7 +1626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:58:06 GMT + - Mon, 12 Apr 2021 06:24:13 GMT expires: - '-1' pragma: @@ -1643,7 +1643,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 052a4fd3-46bd-4134-8d80-197b924e5525 + - c4c13f49-a9fd-4d91-b2b8-35af8b57601d status: code: 200 message: OK @@ -1661,10 +1661,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58141024-e9cd-4197-9a2c-dc1496be6750?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a470e389-6dfc-44d2-9289-2d6416355486?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1676,7 +1676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:58:26 GMT + - Mon, 12 Apr 2021 06:24:34 GMT expires: - '-1' pragma: @@ -1693,7 +1693,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6689da15-28d3-40cf-8da5-6b80c56f6adf + - f9f91dc0-e959-47cb-9f90-7268fb940681 status: code: 200 message: OK @@ -1711,10 +1711,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/58141024-e9cd-4197-9a2c-dc1496be6750?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a470e389-6dfc-44d2-9289-2d6416355486?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1726,7 +1726,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:06 GMT + - Mon, 12 Apr 2021 06:25:14 GMT expires: - '-1' pragma: @@ -1743,7 +1743,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5099fbf8-6070-4692-a69e-bcb2508ec637 + - f7260c5d-2e29-4466-a25e-b9e89c0b72af status: code: 200 message: OK @@ -1761,20 +1761,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1782,7 +1782,7 @@ interactions: \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1798,9 +1798,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:07 GMT + - Mon, 12 Apr 2021 06:25:14 GMT etag: - - W/"3a5746ec-f113-4681-b12a-72b59bcb62fb" + - W/"523533b3-98a6-4401-83c5-10b1f2002857" expires: - '-1' pragma: @@ -1817,7 +1817,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e591c15b-c614-430e-87db-cd87f2fae0ab + - 60603ce4-e2fe-40f5-b430-473ad4b62fee status: code: 200 message: OK @@ -1835,8 +1835,8 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -1844,13 +1844,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1858,7 +1858,7 @@ interactions: \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"myipconfig2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig2\",\r\n - \ \"etag\": \"W/\\\"3a5746ec-f113-4681-b12a-72b59bcb62fb\\\"\",\r\n + \ \"etag\": \"W/\\\"523533b3-98a6-4401-83c5-10b1f2002857\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1874,9 +1874,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:07 GMT + - Mon, 12 Apr 2021 06:25:16 GMT etag: - - W/"3a5746ec-f113-4681-b12a-72b59bcb62fb" + - W/"523533b3-98a6-4401-83c5-10b1f2002857" expires: - '-1' pragma: @@ -1893,7 +1893,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eaedbf10-504e-451d-adea-e4cb4bf35724 + - 6d02f47e-efd9-479c-a156-8bca59ac73ad status: code: 200 message: OK @@ -1921,8 +1921,8 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -1930,13 +1930,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"d441acde-33b6-4805-8639-9b53f3d4a7be\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"14974906-6a63-4bc9-853c-9b063c6e2266\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"d441acde-33b6-4805-8639-9b53f3d4a7be\\\"\",\r\n + \ \"etag\": \"W/\\\"14974906-6a63-4bc9-853c-9b063c6e2266\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1947,7 +1947,7 @@ interactions: []\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c182da60-3973-4eae-8d8c-60f5b57fda02?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73e71b33-024a-49c8-9fce-710386a69e30?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1955,7 +1955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:08 GMT + - Mon, 12 Apr 2021 06:25:16 GMT expires: - '-1' pragma: @@ -1972,9 +1972,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 133f5416-0375-4807-9af5-0281516ae56c + - 88f8fe62-c0df-4b14-98da-b142223fec29 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1199' status: code: 200 message: OK @@ -1992,10 +1992,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c182da60-3973-4eae-8d8c-60f5b57fda02?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73e71b33-024a-49c8-9fce-710386a69e30?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2007,7 +2007,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:18 GMT + - Mon, 12 Apr 2021 06:25:27 GMT expires: - '-1' pragma: @@ -2024,7 +2024,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1cbb763b-e6fa-475b-b7bc-e7a17bca5aae + - 7ac93f0b-cc36-4e02-8d86-2a96810d75b0 status: code: 200 message: OK @@ -2042,10 +2042,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c182da60-3973-4eae-8d8c-60f5b57fda02?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73e71b33-024a-49c8-9fce-710386a69e30?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2057,7 +2057,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:29 GMT + - Mon, 12 Apr 2021 06:25:37 GMT expires: - '-1' pragma: @@ -2074,7 +2074,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e03132cd-3715-43cf-ae48-fefd1e8e5014 + - de038a59-aabe-4397-a10b-bf139e99fc36 status: code: 200 message: OK @@ -2092,10 +2092,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c182da60-3973-4eae-8d8c-60f5b57fda02?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73e71b33-024a-49c8-9fce-710386a69e30?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2107,7 +2107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 09:59:50 GMT + - Mon, 12 Apr 2021 06:25:57 GMT expires: - '-1' pragma: @@ -2124,7 +2124,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b5c13835-4d51-4dc6-85cb-b24df88d6291 + - 64208e0f-18c7-4756-9bc2-45ccbea30273 status: code: 200 message: OK @@ -2142,10 +2142,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c182da60-3973-4eae-8d8c-60f5b57fda02?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/73e71b33-024a-49c8-9fce-710386a69e30?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2157,7 +2157,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:30 GMT + - Mon, 12 Apr 2021 06:26:38 GMT expires: - '-1' pragma: @@ -2174,7 +2174,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d1ea5316-b85b-4cec-8b12-fdab101dbcd9 + - 176bd050-2a21-454e-8e1b-d08e5096ea35 status: code: 200 message: OK @@ -2192,20 +2192,20 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"0f006779-d4ae-457e-90fd-244f4b3c2ed0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6b81eb59-a00b-40d3-905b-2a70fbb79b24\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"0f006779-d4ae-457e-90fd-244f4b3c2ed0\\\"\",\r\n + \ \"etag\": \"W/\\\"6b81eb59-a00b-40d3-905b-2a70fbb79b24\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2222,9 +2222,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:30 GMT + - Mon, 12 Apr 2021 06:26:38 GMT etag: - - W/"0f006779-d4ae-457e-90fd-244f4b3c2ed0" + - W/"6b81eb59-a00b-40d3-905b-2a70fbb79b24" expires: - '-1' pragma: @@ -2241,7 +2241,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - da0540a9-c441-41a1-9809-701c83803c81 + - e0949899-e3d8-4865-a873-dbbb85e90b39 status: code: 200 message: OK @@ -2259,8 +2259,8 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -2268,13 +2268,13 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"0f006779-d4ae-457e-90fd-244f4b3c2ed0\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6b81eb59-a00b-40d3-905b-2a70fbb79b24\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"0f006779-d4ae-457e-90fd-244f4b3c2ed0\\\"\",\r\n + \ \"etag\": \"W/\\\"6b81eb59-a00b-40d3-905b-2a70fbb79b24\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2291,9 +2291,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:32 GMT + - Mon, 12 Apr 2021 06:26:39 GMT etag: - - W/"0f006779-d4ae-457e-90fd-244f4b3c2ed0" + - W/"6b81eb59-a00b-40d3-905b-2a70fbb79b24" expires: - '-1' pragma: @@ -2310,7 +2310,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8dd0f78-a1b8-4949-89d6-43b754cb4f02 + - b929c196-28bd-46e1-aead-037283849285 status: code: 200 message: OK @@ -2335,8 +2335,8 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -2344,7 +2344,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"4ecacd0f-1368-48df-bbf5-da3ee08b8735\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"db4a2bf6-70a1-4b9f-a0e5-f4b13d8e01cb\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -2353,7 +2353,7 @@ interactions: [],\r\n \"natRuleCollections\": []\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2361,7 +2361,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:32 GMT + - Mon, 12 Apr 2021 06:26:39 GMT expires: - '-1' pragma: @@ -2378,9 +2378,259 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bd786013-02e8-4546-abf5-7346f5770b6b + - fca79d83-7886-4041-bd07-151865311d14 x-ms-ratelimit-remaining-subscription-writes: - - '1190' + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:26:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a72bac28-a0f5-467d-af62-1d7fe84b3d60 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:27:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fb253280-eacc-4465-8f19-d0b650544d8a + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:27:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 37b4d09e-b886-4ff5-8280-5eee28f16c58 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:29:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 766c69eb-5850-4f08-900e-7c53e66a8245 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -n -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:31:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 387c3a64-bb3f-4a31-b2bc-8b9dea34a650 status: code: 200 message: OK @@ -2398,10 +2648,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2413,7 +2663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:42 GMT + - Mon, 12 Apr 2021 06:33:32 GMT expires: - '-1' pragma: @@ -2430,7 +2680,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4e70d5e5-d1dd-463d-aa3e-61204f0dac8e + - 1a45d5d7-96a3-4f90-8a59-d2000bed3a10 status: code: 200 message: OK @@ -2448,10 +2698,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2463,7 +2713,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:00:52 GMT + - Mon, 12 Apr 2021 06:35:12 GMT expires: - '-1' pragma: @@ -2480,7 +2730,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 17fefda4-d1bf-4e7a-a5bb-94300d89caad + - 0d1beabe-a445-46ee-be26-8854bbcd9ab4 status: code: 200 message: OK @@ -2498,10 +2748,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2513,7 +2763,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:01:12 GMT + - Mon, 12 Apr 2021 06:36:52 GMT expires: - '-1' pragma: @@ -2530,7 +2780,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a7d0a37-32bf-40ef-81ae-9577e6c27486 + - 59995113-dda5-4a31-91dd-950595cf824f status: code: 200 message: OK @@ -2548,10 +2798,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2563,7 +2813,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:01:53 GMT + - Mon, 12 Apr 2021 06:38:32 GMT expires: - '-1' pragma: @@ -2580,7 +2830,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0372e9af-d59e-4bfa-b3ac-6c4df34a3b94 + - 2afa67f0-2730-4335-a6ea-3bc545366b44 status: code: 200 message: OK @@ -2598,10 +2848,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2613,7 +2863,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:03:13 GMT + - Mon, 12 Apr 2021 06:40:16 GMT expires: - '-1' pragma: @@ -2630,7 +2880,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8e6c2b9d-c270-432f-b0ca-fa3a40eab3fb + - 071efab8-05ec-432c-8b82-88779c3c7e98 status: code: 200 message: OK @@ -2648,10 +2898,10 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d51ebcfa-3c8e-4f98-90e1-aceb2a2f677e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9ea42d00-3404-401e-97ae-a122b57fa762?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2663,7 +2913,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:05:53 GMT + - Mon, 12 Apr 2021 06:41:56 GMT expires: - '-1' pragma: @@ -2680,7 +2930,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8814c557-a465-4969-8d85-0111837aeef3 + - 3d2ded2a-19fa-41e1-a18a-ba6a313c58d1 status: code: 200 message: OK @@ -2698,14 +2948,14 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"088d0833-3780-401e-8e57-7ee956aef541\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"54d9de36-57c7-4bce-9166-fa47ee1480a2\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -2720,9 +2970,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 18 Jan 2021 10:05:54 GMT + - Mon, 12 Apr 2021 06:41:56 GMT etag: - - W/"088d0833-3780-401e-8e57-7ee956aef541" + - W/"54d9de36-57c7-4bce-9166-fa47ee1480a2" expires: - '-1' pragma: @@ -2739,7 +2989,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eaea2681-97a3-4a40-9e15-d016c8b06c99 + - 22a44525-dfbb-4799-a97b-7f11117cfe2d status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml index 71f4a9a9a1d..635a4220b3c 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:09 GMT + - Mon, 12 Apr 2021 06:17:45 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -71,7 +71,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"ebd9059d-d5c0-4b1e-8415-34b2c0c406c1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"268d6c9d-fe5f-4590-a9f3-45f1b667a073\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -82,7 +82,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e86338d-954a-49bb-9b30-1e07657c43d5?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d555d9d2-46ea-4545-aadf-320266683252?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -90,7 +90,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:14 GMT + - Mon, 12 Apr 2021 06:17:52 GMT expires: - '-1' pragma: @@ -103,9 +103,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4adf4108-c6b0-4e11-a745-a306b669080f + - 9f512cba-0d74-4b42-9b7d-83147713dc3f x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -123,10 +123,10 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e86338d-954a-49bb-9b30-1e07657c43d5?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d555d9d2-46ea-4545-aadf-320266683252?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -138,7 +138,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:25 GMT + - Mon, 12 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -155,7 +155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6728d3b4-7d86-4606-a069-f0586e093739 + - c4a2f4f6-1d81-465c-9449-18f031392027 status: code: 200 message: OK @@ -173,14 +173,14 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"35ee5a5c-ddb0-4033-8453-6e94b4fa879a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": @@ -195,9 +195,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:25 GMT + - Mon, 12 Apr 2021 06:18:03 GMT etag: - - W/"35ee5a5c-ddb0-4033-8453-6e94b4fa879a" + - W/"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9" expires: - '-1' pragma: @@ -214,7 +214,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25ed22e4-9086-4e10-a57f-c60e6407179a + - f7094de7-aa4b-443f-998e-dcf9ba9b07d4 status: code: 200 message: OK @@ -232,15 +232,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -249,7 +249,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:26 GMT + - Mon, 12 Apr 2021 06:18:05 GMT expires: - '-1' pragma: @@ -282,15 +282,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"99630aee-d460-4b1c-aca6-00c1892df384\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"c9030a52-2e3e-41a6-9057-b3dd139487db\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"71f29f98-c2bd-457b-923b-d74c47df086a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"f2b4ce4a-c803-4537-87ef-c1b78738cd8a\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -299,7 +299,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bd6be3a9-bd0e-4caa-9cc5-c872787c8713?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bad1140c-5e03-400a-8957-72209be5aed7?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -307,7 +307,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:31 GMT + - Mon, 12 Apr 2021 06:18:11 GMT expires: - '-1' pragma: @@ -320,9 +320,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae6d4855-b881-4756-bfa3-f66568a12f82 + - c2d573d5-5e28-4290-9d0f-389748fc150b x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -340,9 +340,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bd6be3a9-bd0e-4caa-9cc5-c872787c8713?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bad1140c-5e03-400a-8957-72209be5aed7?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -354,7 +354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:32 GMT + - Mon, 12 Apr 2021 06:18:13 GMT expires: - '-1' pragma: @@ -371,7 +371,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fde6379-8257-4c74-88d2-ee517e8f9c3c + - f4eaa9bf-0de9-4f23-94ce-1a4c00debd8a status: code: 200 message: OK @@ -389,16 +389,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"c7d56cc5-1b11-4869-942d-3a4e6228b92b\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"53365c81-8b9d-4086-80cd-76be01b099ab\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"71f29f98-c2bd-457b-923b-d74c47df086a\",\r\n \"ipAddress\": - \"157.56.162.137\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"f2b4ce4a-c803-4537-87ef-c1b78738cd8a\",\r\n \"ipAddress\": + \"13.64.142.165\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -406,13 +406,13 @@ interactions: cache-control: - no-cache content-length: - - '722' + - '721' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:33 GMT + - Mon, 12 Apr 2021 06:18:13 GMT etag: - - W/"c7d56cc5-1b11-4869-942d-3a4e6228b92b" + - W/"53365c81-8b9d-4086-80cd-76be01b099ab" expires: - '-1' pragma: @@ -429,7 +429,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 20e5235c-acfe-47a0-9ce4-0c5a655860cb + - a5999bbe-6ed1-4a07-8292-5c51a9ccbe7e status: code: 200 message: OK @@ -447,15 +447,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -464,7 +464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:34 GMT + - Mon, 12 Apr 2021 06:18:13 GMT expires: - '-1' pragma: @@ -497,15 +497,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"90c82cb8-a185-4f10-a946-d502d09c1d15\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"42988aa8-f53d-485e-b16d-c15674c23d27\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2eeeef40-a47a-4d6c-b11c-e69834771cf3\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"9fe141e3-34be-4cc2-8dc1-84699a3ad1a8\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -514,7 +514,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0947402-057a-4831-9d43-529e80ec890f?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05d7a3b7-3f0d-4716-8a28-301ea5716371?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:40 GMT + - Mon, 12 Apr 2021 06:18:19 GMT expires: - '-1' pragma: @@ -535,9 +535,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8d4a88e-b9b9-4666-bdbe-c410763c9738 + - 851f8762-27ef-4cde-a136-0816e329316f x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -555,9 +555,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c0947402-057a-4831-9d43-529e80ec890f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05d7a3b7-3f0d-4716-8a28-301ea5716371?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:41 GMT + - Mon, 12 Apr 2021 06:18:20 GMT expires: - '-1' pragma: @@ -586,7 +586,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ecac361-caf6-48aa-a38e-2d1ea0c5be3e + - ad36c609-76aa-4e91-9d93-0d815dedf102 status: code: 200 message: OK @@ -604,16 +604,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"e02a9038-a686-44c5-adec-b39ee6db91ae\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"98b7fb7a-c743-409d-91b8-0d3cd45ba221\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"2eeeef40-a47a-4d6c-b11c-e69834771cf3\",\r\n \"ipAddress\": - \"104.40.6.0\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"9fe141e3-34be-4cc2-8dc1-84699a3ad1a8\",\r\n \"ipAddress\": + \"13.64.110.150\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -621,13 +621,13 @@ interactions: cache-control: - no-cache content-length: - - '720' + - '723' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:41 GMT + - Mon, 12 Apr 2021 06:18:20 GMT etag: - - W/"e02a9038-a686-44c5-adec-b39ee6db91ae" + - W/"98b7fb7a-c743-409d-91b8-0d3cd45ba221" expires: - '-1' pragma: @@ -644,7 +644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a6f62b7-57a2-4d1c-ab75-cbda1b7c0b39 + - 6f445117-0523-4560-8d8a-82894482f574 status: code: 200 message: OK @@ -662,15 +662,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -679,7 +679,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:42 GMT + - Mon, 12 Apr 2021 06:18:21 GMT expires: - '-1' pragma: @@ -712,15 +712,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"8b15c244-5916-49f3-8c04-a00c5b3a1764\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"9f41df54-c74d-4ff8-bd98-e5428e9dd7b0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"49c570de-a353-4b93-8f48-0a003a38c79a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"39ee853a-fe9f-4ad5-8f30-f3a4958cff8c\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -729,7 +729,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8a8cc19-c918-415d-bf0f-38b2c5eb0ee6?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dbba182c-0b0b-4254-a85b-e49a38d25078?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -737,7 +737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:48 GMT + - Mon, 12 Apr 2021 06:18:26 GMT expires: - '-1' pragma: @@ -750,9 +750,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1be54460-f805-4067-9cc4-16aa6ac534b8 + - f8266ce1-fa4d-42d6-816f-f3f159056a92 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -770,9 +770,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b8a8cc19-c918-415d-bf0f-38b2c5eb0ee6?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dbba182c-0b0b-4254-a85b-e49a38d25078?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -784,7 +784,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:49 GMT + - Mon, 12 Apr 2021 06:18:28 GMT expires: - '-1' pragma: @@ -801,7 +801,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0845f6fb-2a5e-4d66-bf84-8e8618057f8a + - 80f00195-256b-41d1-89e8-015c0eedabf2 status: code: 200 message: OK @@ -819,16 +819,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"e2603d49-c594-47c2-bdf5-7ac8c6157572\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"36fbcd5c-5069-4803-a7a8-7c673c9cb9d0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"49c570de-a353-4b93-8f48-0a003a38c79a\",\r\n \"ipAddress\": - \"157.56.165.89\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"39ee853a-fe9f-4ad5-8f30-f3a4958cff8c\",\r\n \"ipAddress\": + \"40.78.5.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -836,13 +836,13 @@ interactions: cache-control: - no-cache content-length: - - '723' + - '721' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:50 GMT + - Mon, 12 Apr 2021 06:18:28 GMT etag: - - W/"e2603d49-c594-47c2-bdf5-7ac8c6157572" + - W/"36fbcd5c-5069-4803-a7a8-7c673c9cb9d0" expires: - '-1' pragma: @@ -859,7 +859,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62597dab-3d6d-4b0b-9da6-9a678147fbfd + - 311bfbbb-560f-4620-a51d-26719d57748e status: code: 200 message: OK @@ -877,15 +877,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -894,7 +894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:51 GMT + - Mon, 12 Apr 2021 06:18:28 GMT expires: - '-1' pragma: @@ -927,15 +927,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"4db616f2-9bd7-43c4-a1d5-d3204a979593\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ad82ad12-a30e-47d9-965b-da368954abef\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c532738f-798f-4056-b56d-61fbc3f23baa\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"abc4b474-c213-48be-951e-971021acd729\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -944,7 +944,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7661fe54-df92-4487-826b-7660da77816f?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b0ed07-c582-4afa-9bfa-3c5739c879bd?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -952,7 +952,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:56 GMT + - Mon, 12 Apr 2021 06:18:33 GMT expires: - '-1' pragma: @@ -965,9 +965,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d75ebbe3-d5f2-48aa-87e2-873bf461f4e9 + - a55e52c6-682d-4c1c-a4f9-d77dc0072f01 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -985,9 +985,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7661fe54-df92-4487-826b-7660da77816f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b0ed07-c582-4afa-9bfa-3c5739c879bd?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -999,7 +999,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:57 GMT + - Mon, 12 Apr 2021 06:18:34 GMT expires: - '-1' pragma: @@ -1016,7 +1016,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cfbf2391-c391-4582-b9ce-ea8fe5057242 + - c498e59f-f1ea-498e-835d-adbdaf1dcbf6 status: code: 200 message: OK @@ -1034,16 +1034,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"6704831c-673b-4969-b36a-7e9b4deee8a8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"b0685347-7d06-4c5f-9387-5f2094f84d7a\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c532738f-798f-4056-b56d-61fbc3f23baa\",\r\n \"ipAddress\": - \"104.40.9.17\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"abc4b474-c213-48be-951e-971021acd729\",\r\n \"ipAddress\": + \"40.78.5.40\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" @@ -1051,13 +1051,13 @@ interactions: cache-control: - no-cache content-length: - - '721' + - '720' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:57 GMT + - Mon, 12 Apr 2021 06:18:35 GMT etag: - - W/"6704831c-673b-4969-b36a-7e9b4deee8a8" + - W/"b0685347-7d06-4c5f-9387-5f2094f84d7a" expires: - '-1' pragma: @@ -1074,7 +1074,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 845e59e3-3609-4cb8-824c-ee07593caccf + - be0353f0-c9fa-4c21-8617-99c300ca562b status: code: 200 message: OK @@ -1086,210 +1086,39 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - network firewall ip-config create Connection: - keep-alive ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes + - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:10:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '217' - Content-Type: - - application/json - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"a92e5f2d-0de9-45db-adb6-169667808119\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f1bbdd7d-7a14-45de-b820-039bfcbdaf55\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"a92e5f2d-0de9-45db-adb6-169667808119\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4008b015-5fcd-4468-b19a-409070b741b8?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '1464' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:05 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 2629b6be-fc98-4600-b31c-5934e90a919c - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/4008b015-5fcd-4468-b19a-409070b741b8?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c55d2cf1-fcad-4303-b53b-85f4d0b33372 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"c198abb1-0525-4798-bd4f-4e73b0168832\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f1bbdd7d-7a14-45de-b820-039bfcbdaf55\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"c198abb1-0525-4798-bd4f-4e73b0168832\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1466' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:08 GMT + - Mon, 12 Apr 2021 06:18:36 GMT etag: - - W/"c198abb1-0525-4798-bd4f-4e73b0168832" + - W/"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9" expires: - '-1' pragma: @@ -1306,109 +1135,58 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49589be9-7292-4d5a-8960-924e5f4f74fa - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff + - edfc9822-54fb-4d58-a793-2b143cd3b0d0 status: code: 200 message: OK - request: - body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallManagementSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": + [], "networkRuleCollections": [], "ipConfigurations": [{"properties": {"subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3"}}, + "name": "myipconfig3"}], "threatIntelMode": "Alert", "sku": {"name": "AZFW_VNet", + "tier": "Standard"}, "additionalProperties": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network vnet create + - network firewall ip-config create Connection: - keep-alive Content-Length: - - '227' + - '965' Content-Type: - - application/json + - application/json; charset=utf-8 ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes + - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n - \ \"etag\": \"W/\\\"3ccbf493-85c8-40c6-a836-b39acf89383d\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"7b8daa61-9f3a-42c7-8646-47fbfa0a8404\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"3ccbf493-85c8-40c6-a836-b39acf89383d\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceReference\",\r\n + \ \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_AZURE_FIREWALL_MANAGEMENT_IP_CONFIGLMEHUXIFBT7EW5OPBADANL4SXUSX5YH/providers/Microsoft.Network/virtualNetworks/MYVNET + referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1 + was not found. Please make sure that the referenced resource exists, and that + both resources are in the same region.\",\r\n \"details\": [\r\n {\r\n + \ \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_AZURE_FIREWALL_MANAGEMENT_IP_CONFIGLMEHUXIFBT7EW5OPBADANL4SXUSX5YH/providers/Microsoft.Network/virtualNetworks/MYVNET + not found.\"\r\n }\r\n ]\r\n }\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943ef37-64ab-443f-9ee2-7479258c395a?api-version=2020-07-01 cache-control: - no-cache content-length: - - '1487' + - '924' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:11 GMT + - Mon, 12 Apr 2021 06:18:36 GMT expires: - '-1' pragma: @@ -1421,1665 +1199,10 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 65e40be3-1a91-423d-97a6-3eae71c3cdb4 + - f0507c54-49a0-469c-936d-dff7e6e51deb x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b943ef37-64ab-443f-9ee2-7479258c395a?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:15 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5339cb48-d085-4563-8fc7-909ff2d70092 + - '1199' status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"myvnet2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2\",\r\n - \ \"etag\": \"W/\\\"30da4b8a-5dd6-4175-a87e-ca32a39057bf\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"7b8daa61-9f3a-42c7-8646-47fbfa0a8404\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet2/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"30da4b8a-5dd6-4175-a87e-ca32a39057bf\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1489' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:15 GMT - etag: - - W/"30da4b8a-5dd6-4175-a87e-ca32a39057bf" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 8eb6554e-9305-43dd-a7bd-38b17ade9f89 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T09:10:06Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallManagementSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - Content-Length: - - '227' - Content-Type: - - application/json - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"myvnet4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4\",\r\n - \ \"etag\": \"W/\\\"5bb960c8-dedc-4cf2-831d-6125b96c30dd\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c581f4be-5fce-4bef-affc-4cdcd208c536\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"5bb960c8-dedc-4cf2-831d-6125b96c30dd\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6134b09d-1af0-47a3-8efb-e95e4941ba27?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '1487' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:21 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - bd6ee1fa-d7ed-41b3-bada-c2359ba3588d - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6134b09d-1af0-47a3-8efb-e95e4941ba27?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:24 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 8649c887-f02e-4bad-ad17-c32a8a05e92e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network vnet create - Connection: - - keep-alive - ParameterSetName: - - -g -n --subnet-name --address-prefixes --subnet-prefixes - User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"myvnet4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4\",\r\n - \ \"etag\": \"W/\\\"e74be2e6-5b32-4374-aaa7-c5d666efbc31\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c581f4be-5fce-4bef-affc-4cdcd208c536\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallManagementSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet4/subnets/AzureFirewallManagementSubnet\",\r\n - \ \"etag\": \"W/\\\"e74be2e6-5b32-4374-aaa7-c5d666efbc31\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1489' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:25 GMT - etag: - - W/"e74be2e6-5b32-4374-aaa7-c5d666efbc31" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 1735b7df-28bb-49fa-a5a3-405fe819bde2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"35ee5a5c-ddb0-4033-8453-6e94b4fa879a\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:25 GMT - etag: - - W/"35ee5a5c-ddb0-4033-8453-6e94b4fa879a" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5f530aff-580b-4316-9726-1a84e80626e7 - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": - [], "networkRuleCollections": [], "ipConfigurations": [{"properties": {"subnet": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3"}}, - "name": "myipconfig3"}], "threatIntelMode": "Alert", "sku": {"name": "AZFW_VNet", - "tier": "Standard"}, "additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - Content-Length: - - '965' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"27ba4408-1189-45e4-8684-fde77c8bf3cf\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"27ba4408-1189-45e4-8684-fde77c8bf3cf\\\"\",\r\n - \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": - {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": - [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": - []\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '1816' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4d41b151-2674-4ae1-a974-f297e47d9f12 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - fbfe8ef9-5735-4ca2-bf30-e3d0300cc0b1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:11:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 20806447-0954-4b67-957c-f671f7f6323e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:12:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b89d38fe-18d2-4500-bcb7-1c437b05b8d4 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:12:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 7ae8812c-e477-4b97-b3f5-2cbb4ba6863b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:14:08 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5319976e-27ae-4c57-af1c-e60be1da3806 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:16:48 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ab9c3151-dcb8-40a3-a3d3-9fe186f194b7 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"4209abb5-b0ad-44a9-a859-e4eb085b075d\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"4209abb5-b0ad-44a9-a859-e4eb085b075d\\\"\",\r\n - \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": - [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": - []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1860' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:16:48 GMT - etag: - - W/"4209abb5-b0ad-44a9-a859-e4eb085b075d" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c06b2da2-763e-42ec-bdc2-f891097aa259 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"4209abb5-b0ad-44a9-a859-e4eb085b075d\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n - \ \"etag\": \"W/\\\"4209abb5-b0ad-44a9-a859-e4eb085b075d\\\"\",\r\n - \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": - \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n - \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n - \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": - [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": - []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1860' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:16:49 GMT - etag: - - W/"4209abb5-b0ad-44a9-a859-e4eb085b075d" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 6831a519-4d34-45d6-9aaf-f5e152a8e57a - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": - [], "networkRuleCollections": [], "threatIntelMode": "Alert", "sku": {"name": - "AZFW_VNet", "tier": "Standard"}, "additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - Content-Length: - - '433' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"db16f2b0-0110-46e2-a42b-4668ef5a8096\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '690' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:16:50 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ee952a9d-929a-4292-9797-7281000b952b - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:17:00 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a85846e9-ec9c-4650-ae7f-8db8574de396 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:17:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - e27c62b5-cc96-48d0-805d-efc18c8ddb4c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:17:31 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 027475f4-fbef-4d86-8ba2-c6b441a0bc13 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:18:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 4aa995c9-c291-455d-81f6-93519c724180 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:19:32 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - b8047c35-aa63-408a-98db-3674a8bf8ac3 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:12 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a2018af2-1e61-4520-b8a2-fd6540e8dcde - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:13 GMT - etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 151d7896-bbfa-45b4-a2ef-c6ecf9ff8a7c - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:13 GMT - etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 5ab0ed1a-929b-4b67-a614-96fa7d5689b7 - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": - [], "networkRuleCollections": [], "threatIntelMode": "Alert", "sku": {"name": - "AZFW_VNet", "tier": "Standard"}, "additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - Content-Length: - - '433' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/290f15e9-1896-4804-abba-d0b746214022?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - dc546342-661a-4c04-966c-cc965dd8c92a - x-ms-ratelimit-remaining-subscription-writes: - - '1196' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/290f15e9-1896-4804-abba-d0b746214022?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:44 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 49ac563e-5126-489a-bcd0-7e8c89613e55 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config delete - Connection: - - keep-alive - ParameterSetName: - - -g -f -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:44 GMT - etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 25108785-a081-42b1-92bd-796ec48a0acf - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall management-ip-config show - Connection: - - keep-alive - ParameterSetName: - - -g -f - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 19 Jan 2021 09:22:45 GMT - etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 8b168438-90f6-471d-82b4-09d2ac7c68f9 - status: - code: 200 - message: OK + code: 400 + message: Bad Request version: 1 diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml index d1f5dd02ca1..d16327948dc 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T03:37:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:37:55 GMT + - Mon, 12 Apr 2021 06:17:45 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -71,7 +71,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"967ed754-5434-4c7f-9c55-2a6afcab1941\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"06eee9e9-6db7-4323-b835-f23b73bafb74\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -80,7 +80,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c04afa9a-a14c-449f-afe4-01bf67942a71?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/23c36bdb-70ad-43a9-8940-47093d182441?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:02 GMT + - Mon, 12 Apr 2021 06:17:53 GMT expires: - '-1' pragma: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - faea718d-1051-4f13-91d5-fa1f3b177ef8 + - 35d91519-dc08-4b2a-8c54-5a0ddbde0cce x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 201 message: Created @@ -121,10 +121,10 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c04afa9a-a14c-449f-afe4-01bf67942a71?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/23c36bdb-70ad-43a9-8940-47093d182441?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:13 GMT + - Mon, 12 Apr 2021 06:18:03 GMT expires: - '-1' pragma: @@ -153,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8451d87a-9499-4625-a6eb-2a1fdfac7b98 + - a4b56cb9-058d-49ac-94b0-d34950c8826a status: code: 200 message: OK @@ -171,14 +171,14 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"a2a7bffa-c1aa-4345-a419-e054c5140e90\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9758d215-e32b-4553-ae18-b5fd4dd82074\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -191,9 +191,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:13 GMT + - Mon, 12 Apr 2021 06:18:04 GMT etag: - - W/"a2a7bffa-c1aa-4345-a419-e054c5140e90" + - W/"9758d215-e32b-4553-ae18-b5fd4dd82074" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25de32d0-6eef-41f5-a309-84ce8a230b8f + - af20e8e0-46c6-40bb-8f5c-ba17f42d8b73 status: code: 200 message: OK @@ -233,8 +233,8 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"ca5d6526-e5d8-45c6-b783-be1280ecf05a\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c574ea4e-6b34-461f-bc54-26a1d347d473\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -254,7 +254,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -262,7 +262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:20 GMT + - Mon, 12 Apr 2021 06:18:10 GMT expires: - '-1' pragma: @@ -275,9 +275,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 667ec603-f927-4d93-a9cf-9d0580dce4a7 + - 20e0e766-ebe5-40e0-9ba1-abb94002ee3f x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -295,10 +295,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -310,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:31 GMT + - Mon, 12 Apr 2021 06:18:21 GMT expires: - '-1' pragma: @@ -327,7 +327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 944fd508-f4dc-4276-b238-169f6c7e1123 + - 1822f44d-4d15-4da1-b1b0-bddec13be0d5 status: code: 200 message: OK @@ -345,10 +345,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:38:41 GMT + - Mon, 12 Apr 2021 06:18:31 GMT expires: - '-1' pragma: @@ -377,7 +377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0395515d-f51b-425b-abe3-d6424ade39ea + - 2cea0552-38e9-4f53-8fad-aa5ea5d320be status: code: 200 message: OK @@ -395,10 +395,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:39:01 GMT + - Mon, 12 Apr 2021 06:18:52 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - af1f0c89-160e-4b42-b51f-4aa6ce8eee78 + - 9cbf7a82-9dba-4166-b678-24f5e71810bd status: code: 200 message: OK @@ -445,10 +445,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:39:21 GMT + - Mon, 12 Apr 2021 06:19:12 GMT expires: - '-1' pragma: @@ -477,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cde5bc35-971e-4233-ad3d-6d4d896d6504 + - 187f7dae-0ec6-4825-a744-146be8e666a5 status: code: 200 message: OK @@ -495,10 +495,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:40:02 GMT + - Mon, 12 Apr 2021 06:19:52 GMT expires: - '-1' pragma: @@ -527,7 +527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7245fc25-a4d7-4440-86d9-5a96c74128c9 + - ee8ed319-bc1c-486e-bc2c-e1dfa132c4dc status: code: 200 message: OK @@ -545,10 +545,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -560,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:40:43 GMT + - Mon, 12 Apr 2021 06:20:33 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcb482c2-659a-4118-bd13-3543750c8435 + - b73353b3-74b0-43b3-9a90-8a76b25a2003 status: code: 200 message: OK @@ -595,10 +595,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/6b2faddf-67db-49e5-a2f7-68fbd048945b?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/a9bf7165-9fa0-4c6d-b41f-cc7d5e06f36b?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -610,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:03 GMT + - Mon, 12 Apr 2021 06:21:53 GMT expires: - '-1' pragma: @@ -627,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0049a52-f90a-4245-bb9f-577276d6d3bb + - 166318f1-c615-41a8-93e2-6e9582dff8a5 status: code: 200 message: OK @@ -645,14 +645,14 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"c0653e12-fe39-4c50-9764-70ecc109159b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f9a86bfc-670f-4430-811f-5c9c2653e26f\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -668,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:03 GMT + - Mon, 12 Apr 2021 06:21:53 GMT expires: - '-1' pragma: @@ -685,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 79b3b9dc-208d-4695-89f6-58c5e150b2a6 + - 9604a3e3-1b3e-44d2-b80d-06e75c2d1e16 status: code: 200 message: OK @@ -707,8 +707,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -720,10 +720,10 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\",\r\n \ \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"891514eb-6a5a-4f23-9823-26db2a8f6351\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"d5c93712-9af1-461d-bde5-be76ff0c16fe\",\r\n \"location\": \"westus2\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/da63f9a4-0356-488d-b433-3a23df19c8ea?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/79a20a2e-2e48-4713-bd78-88b512bb9959?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -731,7 +731,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:10 GMT + - Mon, 12 Apr 2021 06:22:00 GMT expires: - '-1' pragma: @@ -761,10 +761,10 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/da63f9a4-0356-488d-b433-3a23df19c8ea?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/79a20a2e-2e48-4713-bd78-88b512bb9959?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -776,7 +776,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:22 GMT + - Mon, 12 Apr 2021 06:22:12 GMT expires: - '-1' pragma: @@ -808,8 +808,8 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy?api-version=2020-07-01 response: @@ -819,7 +819,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\",\r\n \ \"name\": \"myclipolicy\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"891514eb-6a5a-4f23-9823-26db2a8f6351\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"d5c93712-9af1-461d-bde5-be76ff0c16fe\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -828,7 +828,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:22 GMT + - Mon, 12 Apr 2021 06:22:12 GMT + etag: + - '"d5c93712-9af1-461d-bde5-be76ff0c16fe"' expires: - '-1' pragma: @@ -860,15 +862,15 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T03:37:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -877,7 +879,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:24 GMT + - Mon, 12 Apr 2021 06:22:13 GMT expires: - '-1' pragma: @@ -912,8 +914,8 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -921,7 +923,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"444ab2b5-fb73-41f3-a2f7-08546e1a4cdc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"bc7b846f-a0da-4e3e-8a2c-96ba0fccb881\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -935,7 +937,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -943,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:31 GMT + - Mon, 12 Apr 2021 06:22:21 GMT expires: - '-1' pragma: @@ -956,9 +958,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dd623f75-34dc-461d-a5cf-87570440c591 + - f5965daa-624c-4469-bbbd-a8be2d75d811 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -976,10 +978,110 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:22:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fff752aa-1b87-4b9c-818d-a50237fdff36 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n --count --sku --vhub --firewall-policy + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:22:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0c367d01-6d32-4428-a0e4-075371f16cdd + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n --count --sku --vhub --firewall-policy + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -991,7 +1093,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:41 GMT + - Mon, 12 Apr 2021 06:23:02 GMT expires: - '-1' pragma: @@ -1008,7 +1110,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 43764cb6-383e-49bb-9973-10bac7720e01 + - dd447216-0dac-4559-a157-ddaf91694d92 status: code: 200 message: OK @@ -1026,10 +1128,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1041,7 +1143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:42:52 GMT + - Mon, 12 Apr 2021 06:23:22 GMT expires: - '-1' pragma: @@ -1058,7 +1160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6b9ef3e5-7d95-48d4-9bd0-a944553f8def + - f14c3b31-9626-483e-b06f-6e3bca4841d7 status: code: 200 message: OK @@ -1076,10 +1178,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1091,7 +1193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:43:12 GMT + - Mon, 12 Apr 2021 06:24:03 GMT expires: - '-1' pragma: @@ -1108,7 +1210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 06585392-22b1-47ed-8575-91e9f9534fe9 + - b62aac6e-7a26-45d8-b94d-752aae94a12d status: code: 200 message: OK @@ -1126,10 +1228,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1141,7 +1243,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:43:32 GMT + - Mon, 12 Apr 2021 06:24:43 GMT expires: - '-1' pragma: @@ -1158,7 +1260,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6db27825-64a3-4fde-84e6-37f826f4e668 + - a762bad5-83f0-4c18-8fad-0f571d0cd2da status: code: 200 message: OK @@ -1176,10 +1278,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1191,7 +1293,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:44:12 GMT + - Mon, 12 Apr 2021 06:26:03 GMT expires: - '-1' pragma: @@ -1208,7 +1310,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1850db62-05f3-48b3-8f00-f44dcd17e688 + - ae91b7dc-a814-4911-aa37-2608c163ab2d status: code: 200 message: OK @@ -1226,10 +1328,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1241,7 +1343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:44:53 GMT + - Mon, 12 Apr 2021 06:28:44 GMT expires: - '-1' pragma: @@ -1258,7 +1360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1abbff84-23b5-46d2-b813-6f21daca734c + - 802c337a-152b-416a-a59d-3846d6965167 status: code: 200 message: OK @@ -1276,10 +1378,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1291,7 +1393,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:46:13 GMT + - Mon, 12 Apr 2021 06:30:24 GMT expires: - '-1' pragma: @@ -1308,7 +1410,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 788f5d11-6f44-4f82-b699-7ea062f8cb97 + - 1373bc7f-82f1-4fea-887e-79f6541fb2ef status: code: 200 message: OK @@ -1326,10 +1428,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1341,7 +1443,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:48:53 GMT + - Mon, 12 Apr 2021 06:32:05 GMT expires: - '-1' pragma: @@ -1358,7 +1460,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 11f96001-e975-4306-86f8-8c6d378ed9f6 + - bdac1377-5165-4202-95cf-8f36d75eee5b status: code: 200 message: OK @@ -1376,10 +1478,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1391,7 +1493,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:50:34 GMT + - Mon, 12 Apr 2021 06:33:45 GMT expires: - '-1' pragma: @@ -1408,7 +1510,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e2be0e8c-fd1e-43c0-9488-55bbb3bed3ca + - 8403a480-f484-4a32-9d2d-ba5b9d54fe72 status: code: 200 message: OK @@ -1426,10 +1528,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1441,7 +1543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:52:14 GMT + - Mon, 12 Apr 2021 06:35:25 GMT expires: - '-1' pragma: @@ -1458,7 +1560,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - aa5dc0ca-4c97-4101-9793-918e24860dfc + - 0c67ade4-88f3-4959-b9ee-e8d60b8bd220 status: code: 200 message: OK @@ -1476,10 +1578,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1491,7 +1593,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:53:54 GMT + - Mon, 12 Apr 2021 06:37:05 GMT expires: - '-1' pragma: @@ -1508,7 +1610,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 02844d06-9dc0-4144-bb77-790c38c1da6e + - 46754fce-3631-46a7-8139-6eb8919dac8c status: code: 200 message: OK @@ -1526,10 +1628,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1541,7 +1643,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:55:34 GMT + - Mon, 12 Apr 2021 06:38:46 GMT expires: - '-1' pragma: @@ -1558,7 +1660,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 868b7c6a-5043-40b2-b34c-1559b7f12508 + - ac73189a-e6eb-4e9c-aed7-0f0a85ca3839 status: code: 200 message: OK @@ -1576,10 +1678,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1591,7 +1693,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:57:15 GMT + - Mon, 12 Apr 2021 06:40:28 GMT expires: - '-1' pragma: @@ -1608,7 +1710,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e96fcf1d-fc2e-4a33-b1d2-6c19d9b72b11 + - 06b1f9ea-160c-4b6f-be7f-7d23e718b6d5 status: code: 200 message: OK @@ -1626,10 +1728,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1641,7 +1743,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 03:58:55 GMT + - Mon, 12 Apr 2021 06:42:08 GMT expires: - '-1' pragma: @@ -1658,7 +1760,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b5d82c8c-ab0e-4e13-831f-771f0210e72a + - cb87d34f-4bbc-47df-b08b-1e86889b6ec1 status: code: 200 message: OK @@ -1676,10 +1778,10 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a18406c-45db-40c2-8fe3-08df24706659?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/b7a9ed29-e2b6-4814-835d-5a1ac09024a2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1691,7 +1793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:00:37 GMT + - Mon, 12 Apr 2021 06:43:48 GMT expires: - '-1' pragma: @@ -1708,7 +1810,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8f9043a7-1b1a-4344-bcb6-a7d9dfec6c88 + - bc5e56aa-56c1-4983-993c-ebf0b31446cc status: code: 200 message: OK @@ -1726,22 +1828,22 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"c1be6c8c-89e3-4bb7-9bc7-8d67e9b96ed1\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d2c9fb6c-337e-40ba-bef2-8b6eae86b966\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n - \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.68\",\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"20.72.240.140\"\r\n }\r\n ],\r\n \"count\": 1\r\n + \"20.69.135.91\"\r\n }\r\n ],\r\n \"count\": 1\r\n \ }\r\n },\r\n \"firewallPolicy\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy\"\r\n \ }\r\n }\r\n}" headers: @@ -1752,9 +1854,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:00:37 GMT + - Mon, 12 Apr 2021 06:43:48 GMT etag: - - W/"c1be6c8c-89e3-4bb7-9bc7-8d67e9b96ed1" + - W/"d2c9fb6c-337e-40ba-bef2-8b6eae86b966" expires: - '-1' pragma: @@ -1771,7 +1873,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f37f4342-6dcb-47be-ba97-4545da388e5e + - d7cdab04-0426-4e24-86f6-82285f8de04f status: code: 200 message: OK @@ -1794,8 +1896,8 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -1803,7 +1905,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\",\r\n - \ \"etag\": \"W/\\\"2593469f-6f68-46bd-a17e-4cc1020ec8c7\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"0bc354e8-79db-467d-b190-a6b6414555ff\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -1816,7 +1918,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98f76db8-72ca-4741-b791-b25af9143045?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5641f5c9-0f80-4e1f-9826-b528da0f6081?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1824,7 +1926,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:00:46 GMT + - Mon, 12 Apr 2021 06:43:54 GMT expires: - '-1' pragma: @@ -1837,9 +1939,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c934f5b-25f0-415a-b521-0a2bc60484f2 + - 5ff7854d-c7e4-4471-bd19-0463b0fea04c x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -1857,10 +1959,10 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/98f76db8-72ca-4741-b791-b25af9143045?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5641f5c9-0f80-4e1f-9826-b528da0f6081?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1872,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:00:57 GMT + - Mon, 12 Apr 2021 06:44:05 GMT expires: - '-1' pragma: @@ -1889,7 +1991,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 15a9b264-42d2-4fb4-9f5c-49ccd3c95a73 + - bd9de3d6-4925-40d3-a604-df60e68344d8 status: code: 200 message: OK @@ -1907,14 +2009,14 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\",\r\n - \ \"etag\": \"W/\\\"cf107afc-3dd4-40af-a306-cb93b4c78333\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"440c1df8-f50e-4dce-bd3a-2b57b34dccf0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -1931,9 +2033,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:00:57 GMT + - Mon, 12 Apr 2021 06:44:06 GMT etag: - - W/"cf107afc-3dd4-40af-a306-cb93b4c78333" + - W/"440c1df8-f50e-4dce-bd3a-2b57b34dccf0" expires: - '-1' pragma: @@ -1950,7 +2052,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eac8a7e7-74a8-468e-a873-f6678c7472ed + - 5d371d50-b833-4d84-9ab3-ec061b235280 status: code: 200 message: OK @@ -1973,15 +2075,15 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"75064b4f-54b4-4249-aae0-85c72f6db5d1\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"2a9996b7-bdaa-47e0-aacd-3e658cf6ae2a\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"4bd897ae-9b9f-4814-b0a2-a63950638a7d\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"dcb90c60-0a64-4d42-8c1f-d3bb0345e0a3\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n @@ -1990,7 +2092,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/910164cf-8b4a-4b7d-af79-aa56e297352b?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1d96527d-8389-48f2-99ba-b2ac45307bc2?api-version=2020-11-01 cache-control: - no-cache content-length: @@ -1998,7 +2100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:04 GMT + - Mon, 12 Apr 2021 06:44:14 GMT expires: - '-1' pragma: @@ -2011,9 +2113,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5618e43b-8f2d-4a98-828e-52ecdcaaa1de + - 04088667-a28f-4017-9081-bd1e4fa956da x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -2031,21 +2133,21 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/910164cf-8b4a-4b7d-af79-aa56e297352b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/1d96527d-8389-48f2-99ba-b2ac45307bc2?api-version=2020-11-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:05 GMT + - Mon, 12 Apr 2021 06:44:15 GMT expires: - '-1' pragma: @@ -2062,7 +2164,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6ec242a4-a167-4526-85c2-83d2ae7e0f58 + - 6d54e2c7-0e17-457b-a077-3acf4501e844 status: code: 200 message: OK @@ -2080,21 +2182,30 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/910164cf-8b4a-4b7d-af79-aa56e297352b?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 response: body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" + string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n + \ \"etag\": \"W/\\\"78977da4-3271-4250-a3ad-1e6a8d6f9faf\\\"\",\r\n \"location\": + \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"dcb90c60-0a64-4d42-8c1f-d3bb0345e0a3\",\r\n \"ipAddress\": + \"13.66.224.174\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '29' + - '722' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:07 GMT + - Mon, 12 Apr 2021 06:44:15 GMT + etag: + - W/"78977da4-3271-4250-a3ad-1e6a8d6f9faf" expires: - '-1' pragma: @@ -2111,10 +2222,82 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 42dfcf63-69ac-4b45-81e1-1bd2bcde922d + - 34c2c9e9-acf7-468d-94c0-e178343a34fc status: code: 200 message: OK +- request: + body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", + "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '218' + Content-Type: + - application/json + ParameterSetName: + - -g -n --subnet-name -l --address-prefixes --subnet-prefixes + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n + \ \"etag\": \"W/\\\"2dd7b397-06b7-4bdf-a02f-67bfc3349cc5\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"8ed5ead9-fc5f-4525-b9b1-15e163624bc0\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n + \ \"etag\": \"W/\\\"2dd7b397-06b7-4bdf-a02f-67bfc3349cc5\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/94337138-dc8d-4e1b-9df5-08e5fea5c16e?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '1431' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 06:44:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 57cc3e69-802d-4843-847d-911653269214 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created - request: body: null headers: @@ -2123,36 +2306,27 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network public-ip create + - network vnet create Connection: - keep-alive ParameterSetName: - - -g -n -l --sku + - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/94337138-dc8d-4e1b-9df5-08e5fea5c16e?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"ef1885f6-fee6-4808-87e9-7802cd7dbe23\\\"\",\r\n \"location\": - \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"4bd897ae-9b9f-4814-b0a2-a63950638a7d\",\r\n \"ipAddress\": - \"52.137.107.210\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '723' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:07 GMT - etag: - - W/"ef1885f6-fee6-4808-87e9-7802cd7dbe23" + - Mon, 12 Apr 2021 06:44:24 GMT expires: - '-1' pragma: @@ -2169,64 +2343,39 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0a33973-5dc7-46d1-885c-02c539e3eec6 + - 06c908e1-04fe-4011-a580-cc9cabc3df16 status: code: 200 message: OK - request: - body: '{"location": "westus2", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": - ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - network vnet create Connection: - keep-alive - Content-Length: - - '218' - Content-Type: - - application/json ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/94337138-dc8d-4e1b-9df5-08e5fea5c16e?api-version=2020-11-01 response: body: - string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"8ed92a4e-9707-4429-b402-a59495bef27f\\\"\",\r\n \"type\": - \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n - \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"d9cd2380-dea7-432b-92f2-e65519b6dbdc\",\r\n \"addressSpace\": - {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n - \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n - \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"8ed92a4e-9707-4429-b402-a59495bef27f\\\"\",\r\n - \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": - [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": - \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n - \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/374cd23d-a583-4077-9f9a-06509a860d68?api-version=2020-07-01 cache-control: - no-cache content-length: - - '1465' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:14 GMT + - Mon, 12 Apr 2021 06:44:36 GMT expires: - '-1' pragma: @@ -2236,15 +2385,17 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 95ef86e9-d006-4ca8-8ddd-3494506032e5 - x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - 9ceed392-77fa-4581-9432-6bee33f1bb96 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -2259,9 +2410,9 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/374cd23d-a583-4077-9f9a-06509a860d68?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/94337138-dc8d-4e1b-9df5-08e5fea5c16e?api-version=2020-11-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2273,7 +2424,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:17 GMT + - Mon, 12 Apr 2021 06:44:56 GMT expires: - '-1' pragma: @@ -2290,7 +2441,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25016f2a-3f38-4f83-8053-d535bcc5fb74 + - 60505d65-d5a6-4da5-82bc-6a698cee8a1e status: code: 200 message: OK @@ -2308,38 +2459,38 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 response: body: string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n - \ \"etag\": \"W/\\\"b08d96f1-1501-4b0b-a620-4add47210097\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6a59a0d5-edb6-4dba-8adf-267995cd32c0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"d9cd2380-dea7-432b-92f2-e65519b6dbdc\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"8ed5ead9-fc5f-4525-b9b1-15e163624bc0\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n - \ \"etag\": \"W/\\\"b08d96f1-1501-4b0b-a620-4add47210097\\\"\",\r\n + \ \"etag\": \"W/\\\"6a59a0d5-edb6-4dba-8adf-267995cd32c0\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": - false,\r\n \"enableVmProtection\": false\r\n }\r\n}" + false\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '1467' + - '1433' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:17 GMT + - Mon, 12 Apr 2021 06:44:56 GMT etag: - - W/"b08d96f1-1501-4b0b-a620-4add47210097" + - W/"6a59a0d5-edb6-4dba-8adf-267995cd32c0" expires: - '-1' pragma: @@ -2356,7 +2507,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8114971b-612e-4b0f-befe-ddf3b553b091 + - d9c29f63-4852-407f-b26e-a88f218db37c status: code: 200 message: OK @@ -2374,8 +2525,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -2383,7 +2534,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\",\r\n - \ \"etag\": \"W/\\\"cf107afc-3dd4-40af-a306-cb93b4c78333\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"440c1df8-f50e-4dce-bd3a-2b57b34dccf0\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -2400,9 +2551,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:18 GMT + - Mon, 12 Apr 2021 06:44:56 GMT etag: - - W/"cf107afc-3dd4-40af-a306-cb93b4c78333" + - W/"440c1df8-f50e-4dce-bd3a-2b57b34dccf0" expires: - '-1' pragma: @@ -2419,7 +2570,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c1c5d99-54a9-476b-9f87-d967ac1b795a + - 24063147-e82d-45cb-b66a-1a74e43ea5ff status: code: 200 message: OK @@ -2448,8 +2599,8 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -2457,14 +2608,14 @@ interactions: response: body: string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\",\r\n - \ \"etag\": \"W/\\\"3f90e410-7fde-4750-91f5-cb2e8961d3ac\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b03dc96b-6a6c-40db-a09d-21905ff36576\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \ \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"3f90e410-7fde-4750-91f5-cb2e8961d3ac\\\"\",\r\n + \ \"etag\": \"W/\\\"b03dc96b-6a6c-40db-a09d-21905ff36576\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2476,7 +2627,7 @@ interactions: \ }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2484,7 +2635,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:19 GMT + - Mon, 12 Apr 2021 06:44:57 GMT expires: - '-1' pragma: @@ -2501,9 +2652,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0d693950-e4dd-4d2f-8104-2b74cd2553de + - 2762528b-c45f-4352-ac74-693ef33b4785 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -2521,10 +2672,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2536,7 +2687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:30 GMT + - Mon, 12 Apr 2021 06:45:08 GMT expires: - '-1' pragma: @@ -2553,7 +2704,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ba7de471-bba3-4e03-bf63-01b568472fc5 + - ebdec465-54e0-46b5-9beb-47f92def5b29 status: code: 200 message: OK @@ -2571,10 +2722,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2586,7 +2737,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:01:40 GMT + - Mon, 12 Apr 2021 06:45:18 GMT expires: - '-1' pragma: @@ -2603,7 +2754,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f277c580-8b08-4303-a6f9-b58fa6339a83 + - e68201c0-5565-4672-97dc-f4aa49283e22 status: code: 200 message: OK @@ -2621,10 +2772,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2636,7 +2787,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:02:01 GMT + - Mon, 12 Apr 2021 06:45:38 GMT expires: - '-1' pragma: @@ -2653,7 +2804,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6759cc7b-316b-4b21-988a-736cb702cc83 + - 7811bb29-ab90-4381-a598-8d66a04f88cd status: code: 200 message: OK @@ -2671,10 +2822,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2686,7 +2837,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:02:41 GMT + - Mon, 12 Apr 2021 06:46:19 GMT expires: - '-1' pragma: @@ -2703,7 +2854,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5898fcb3-bf7b-47ff-84db-8e43b26f2f99 + - df1cb003-42b2-4586-923e-b04d3bee1ae4 status: code: 200 message: OK @@ -2721,10 +2872,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2736,7 +2887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:04:01 GMT + - Mon, 12 Apr 2021 06:47:39 GMT expires: - '-1' pragma: @@ -2753,7 +2904,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9145c2f6-dce6-4fbf-b2a9-c892f1eff8bf + - ad53aca6-6100-4fd9-b4f1-6cd02977f62b status: code: 200 message: OK @@ -2771,10 +2922,10 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/5f5b9ff8-b314-4fe6-86b7-68e45a172567?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/8bf4c636-645b-4103-a6cf-dcd92e4ae088?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2786,7 +2937,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:06:42 GMT + - Mon, 12 Apr 2021 06:50:19 GMT expires: - '-1' pragma: @@ -2803,7 +2954,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ec3eb190-8821-49e1-9aec-dcc33579d52a + - d84b5be6-12e5-4ade-83d0-98ae5218c29c status: code: 200 message: OK @@ -2821,21 +2972,21 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2?api-version=2020-07-01 response: body: string: "{\r\n \"name\": \"af2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2\",\r\n - \ \"etag\": \"W/\\\"e52cb06d-bec8-41d7-ade3-6c387eef086d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2f9be2d3-59cd-44f3-96b3-edbfd0bafe0f\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus2\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \ \"threatIntelMode\": \"Alert\",\r\n \"additionalProperties\": {},\r\n \ \"ipConfigurations\": [\r\n {\r\n \"name\": \"myipconfig1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/azureFirewalls/af2/azureFirewallIpConfigurations/myipconfig1\",\r\n - \ \"etag\": \"W/\\\"e52cb06d-bec8-41d7-ade3-6c387eef086d\\\"\",\r\n + \ \"etag\": \"W/\\\"2f9be2d3-59cd-44f3-96b3-edbfd0bafe0f\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2853,9 +3004,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:06:42 GMT + - Mon, 12 Apr 2021 06:50:19 GMT etag: - - W/"e52cb06d-bec8-41d7-ade3-6c387eef086d" + - W/"2f9be2d3-59cd-44f3-96b3-edbfd0bafe0f" expires: - '-1' pragma: @@ -2872,7 +3023,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3ee66a14-ca7b-4447-ac20-4f3595b6e083 + - e09c68a4-1e2e-482d-a29d-4b1c057ebac8 status: code: 200 message: OK @@ -2894,8 +3045,8 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -2907,10 +3058,10 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"57b3fde9-b8b8-445e-bc53-b6ce5b58852c\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"5b1ffb17-b233-4e11-b512-e87146022b38\",\r\n \"location\": \"westus2\"\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/3ccc1219-e053-43f8-ae79-fabf9a9a6949?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/f446db92-dca8-45e5-b210-4afba68cafea?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2918,7 +3069,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:06:50 GMT + - Mon, 12 Apr 2021 06:50:26 GMT expires: - '-1' pragma: @@ -2930,7 +3081,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2948,10 +3099,10 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/3ccc1219-e053-43f8-ae79-fabf9a9a6949?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/f446db92-dca8-45e5-b210-4afba68cafea?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2963,7 +3114,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:01 GMT + - Mon, 12 Apr 2021 06:50:37 GMT expires: - '-1' pragma: @@ -2995,8 +3146,8 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 response: @@ -3006,7 +3157,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"57b3fde9-b8b8-445e-bc53-b6ce5b58852c\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"5b1ffb17-b233-4e11-b512-e87146022b38\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -3015,7 +3166,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:01 GMT + - Mon, 12 Apr 2021 06:50:37 GMT + etag: + - '"5b1ffb17-b233-4e11-b512-e87146022b38"' expires: - '-1' pragma: @@ -3047,15 +3200,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-01-19T03:37:52Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001","name":"cli_test_azure_firewall_with_firewall_policy000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -3064,7 +3217,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:02 GMT + - Mon, 12 Apr 2021 06:50:38 GMT expires: - '-1' pragma: @@ -3096,15 +3249,15 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest?api-version=2015-08-31-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest","name":"identitytest","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"5b9299ed-1719-40d8-a7ca-aff5a69fd1cd","clientId":"3ffd6ce1-02e5-48ee-80de-64407416030e","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=5b9299ed-1719-40d8-a7ca-aff5a69fd1cd&aid=3ffd6ce1-02e5-48ee-80de-64407416030e"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest","name":"identitytest","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"522eeecc-0e5f-4429-b6b9-7c5336acaa72","clientId":"c3cc1a64-c7f4-4723-80db-78e915acbdef","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=522eeecc-0e5f-4429-b6b9-7c5336acaa72&aid=c3cc1a64-c7f4-4723-80db-78e915acbdef"}}' headers: cache-control: - no-cache @@ -3113,7 +3266,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:12 GMT + - Mon, 12 Apr 2021 06:50:48 GMT expires: - '-1' location: @@ -3143,8 +3296,8 @@ interactions: ParameterSetName: - -g -n --identity User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -3156,7 +3309,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"57b3fde9-b8b8-445e-bc53-b6ce5b58852c\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"5b1ffb17-b233-4e11-b512-e87146022b38\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -3165,7 +3318,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:14 GMT + - Mon, 12 Apr 2021 06:50:50 GMT + etag: + - '"5b1ffb17-b233-4e11-b512-e87146022b38"' expires: - '-1' pragma: @@ -3205,8 +3360,8 @@ interactions: ParameterSetName: - -g -n --identity User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -3218,13 +3373,13 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"8d3d1b28-b653-4a9a-933c-736af186e2cd\",\r\n \"location\": \"westus2\",\r\n + \ \"etag\": \"a422089a-fa84-4134-a02c-6d6a0a40f169\",\r\n \"location\": \"westus2\",\r\n \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest\": {}\r\n }\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/882ee8a7-2d49-478b-831f-87fc0b9c0db0?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/b2e106d3-88f5-424a-94ed-6523d8d39ddd?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -3232,7 +3387,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:19 GMT + - Mon, 12 Apr 2021 06:50:59 GMT expires: - '-1' pragma: @@ -3248,7 +3403,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -3266,10 +3421,10 @@ interactions: ParameterSetName: - -g -n --identity User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/882ee8a7-2d49-478b-831f-87fc0b9c0db0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/b2e106d3-88f5-424a-94ed-6523d8d39ddd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3281,7 +3436,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:31 GMT + - Mon, 12 Apr 2021 06:51:10 GMT expires: - '-1' pragma: @@ -3313,8 +3468,8 @@ interactions: ParameterSetName: - -g -n --identity User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 response: @@ -3324,11 +3479,11 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"8d3d1b28-b653-4a9a-933c-736af186e2cd\",\r\n \"location\": \"westus2\",\r\n + \ \"etag\": \"a422089a-fa84-4134-a02c-6d6a0a40f169\",\r\n \"location\": \"westus2\",\r\n \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest\": - {\r\n \"clientId\": \"3ffd6ce1-02e5-48ee-80de-64407416030e\",\r\n \"principalId\": - \"5b9299ed-1719-40d8-a7ca-aff5a69fd1cd\"\r\n }\r\n }\r\n }\r\n}" + {\r\n \"clientId\": \"c3cc1a64-c7f4-4723-80db-78e915acbdef\",\r\n \"principalId\": + \"522eeecc-0e5f-4429-b6b9-7c5336acaa72\"\r\n }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -3337,7 +3492,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:31 GMT + - Mon, 12 Apr 2021 06:51:11 GMT + etag: + - '"a422089a-fa84-4134-a02c-6d6a0a40f169"' expires: - '-1' pragma: @@ -3369,8 +3526,8 @@ interactions: ParameterSetName: - -g -n --remove User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: GET @@ -3382,11 +3539,11 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"8d3d1b28-b653-4a9a-933c-736af186e2cd\",\r\n \"location\": \"westus2\",\r\n + \ \"etag\": \"a422089a-fa84-4134-a02c-6d6a0a40f169\",\r\n \"location\": \"westus2\",\r\n \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest\": - {\r\n \"clientId\": \"3ffd6ce1-02e5-48ee-80de-64407416030e\",\r\n \"principalId\": - \"5b9299ed-1719-40d8-a7ca-aff5a69fd1cd\"\r\n }\r\n }\r\n }\r\n}" + {\r\n \"clientId\": \"c3cc1a64-c7f4-4723-80db-78e915acbdef\",\r\n \"principalId\": + \"522eeecc-0e5f-4429-b6b9-7c5336acaa72\"\r\n }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache @@ -3395,7 +3552,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:32 GMT + - Mon, 12 Apr 2021 06:51:12 GMT + etag: + - '"a422089a-fa84-4134-a02c-6d6a0a40f169"' expires: - '-1' pragma: @@ -3433,8 +3592,8 @@ interactions: ParameterSetName: - -g -n --remove User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 accept-language: - en-US method: PUT @@ -3446,11 +3605,11 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"c43d8907-b5dd-4794-a0c8-90bee702e964\",\r\n \"location\": \"westus2\",\r\n + \ \"etag\": \"75f7401d-83e9-4144-89c5-2290b8088907\",\r\n \"location\": \"westus2\",\r\n \ \"identity\": {\r\n \"type\": \"None\"\r\n }\r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/87199dba-8ed7-4723-b420-625e5430b872?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/db635734-80d8-4f2f-afce-3316128d8d08?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -3458,7 +3617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:38 GMT + - Mon, 12 Apr 2021 06:51:17 GMT expires: - '-1' pragma: @@ -3474,7 +3633,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -3492,10 +3651,10 @@ interactions: ParameterSetName: - -g -n --remove User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/87199dba-8ed7-4723-b420-625e5430b872?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/db635734-80d8-4f2f-afce-3316128d8d08?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -3507,7 +3666,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:49 GMT + - Mon, 12 Apr 2021 06:51:28 GMT expires: - '-1' pragma: @@ -3539,8 +3698,8 @@ interactions: ParameterSetName: - -g -n --remove User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 response: @@ -3550,7 +3709,7 @@ interactions: \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n - \ \"etag\": \"c43d8907-b5dd-4794-a0c8-90bee702e964\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"75f7401d-83e9-4144-89c5-2290b8088907\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -3559,7 +3718,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 04:07:50 GMT + - Mon, 12 Apr 2021 06:51:29 GMT + etag: + - '"75f7401d-83e9-4144-89c5-2290b8088907"' expires: - '-1' pragma: From 2d82be36c156470eca0d4bd496a6a82b44103599 Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Mon, 12 Apr 2021 17:10:25 +0800 Subject: [PATCH 4/5] test1 --- ...t_azure_firewall_management_ip_config.yaml | 1208 ------------ .../test_azure_firewall_virtual_hub.yaml | 1689 ++++++++++++----- .../latest/test_azure_firewall_scenario.py | 1 + 3 files changed, 1240 insertions(+), 1658 deletions(-) delete mode 100644 src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml deleted file mode 100644 index 635a4220b3c..00000000000 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml +++ /dev/null @@ -1,1208 +0,0 @@ -interactions: -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:17:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "properties": {"additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - Content-Length: - - '66' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"268d6c9d-fe5f-4590-a9f3-45f1b667a073\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d555d9d2-46ea-4545-aadf-320266683252?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '690' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:17:52 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 9f512cba-0d74-4b42-9b7d-83147713dc3f - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d555d9d2-46ea-4545-aadf-320266683252?api-version=2020-07-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:03 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c4a2f4f6-1d81-465c-9449-18f031392027 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:03 GMT - etag: - - W/"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f7094de7-aa4b-443f-998e-dcf9ba9b07d4 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '166' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"c9030a52-2e3e-41a6-9057-b3dd139487db\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"f2b4ce4a-c803-4537-87ef-c1b78738cd8a\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bad1140c-5e03-400a-8957-72209be5aed7?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '685' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:11 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c2d573d5-5e28-4290-9d0f-389748fc150b - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/bad1140c-5e03-400a-8957-72209be5aed7?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f4eaa9bf-0de9-4f23-94ce-1a4c00debd8a - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n - \ \"etag\": \"W/\\\"53365c81-8b9d-4086-80cd-76be01b099ab\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"f2b4ce4a-c803-4537-87ef-c1b78738cd8a\",\r\n \"ipAddress\": - \"13.64.142.165\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '721' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:13 GMT - etag: - - W/"53365c81-8b9d-4086-80cd-76be01b099ab" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a5999bbe-6ed1-4a07-8292-5c51a9ccbe7e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '166' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"42988aa8-f53d-485e-b16d-c15674c23d27\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"9fe141e3-34be-4cc2-8dc1-84699a3ad1a8\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05d7a3b7-3f0d-4716-8a28-301ea5716371?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '687' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:19 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 851f8762-27ef-4cde-a136-0816e329316f - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/05d7a3b7-3f0d-4716-8a28-301ea5716371?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:20 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - ad36c609-76aa-4e91-9d93-0d815dedf102 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n - \ \"etag\": \"W/\\\"98b7fb7a-c743-409d-91b8-0d3cd45ba221\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"9fe141e3-34be-4cc2-8dc1-84699a3ad1a8\",\r\n \"ipAddress\": - \"13.64.110.150\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '723' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:20 GMT - etag: - - W/"98b7fb7a-c743-409d-91b8-0d3cd45ba221" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 6f445117-0523-4560-8d8a-82894482f574 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '166' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"9f41df54-c74d-4ff8-bd98-e5428e9dd7b0\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"39ee853a-fe9f-4ad5-8f30-f3a4958cff8c\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dbba182c-0b0b-4254-a85b-e49a38d25078?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '687' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:26 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f8266ce1-fa4d-42d6-816f-f3f159056a92 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dbba182c-0b0b-4254-a85b-e49a38d25078?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:28 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 80f00195-256b-41d1-89e8-015c0eedabf2 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n - \ \"etag\": \"W/\\\"36fbcd5c-5069-4803-a7a8-7c673c9cb9d0\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"39ee853a-fe9f-4ad5-8f30-f3a4958cff8c\",\r\n \"ipAddress\": - \"40.78.5.167\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '721' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:28 GMT - etag: - - W/"36fbcd5c-5069-4803-a7a8-7c673c9cb9d0" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 311bfbbb-560f-4620-a51d-26719d57748e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_management_ip_config000001?api-version=2020-10-01 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001","name":"cli_test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T06:17:42Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '428' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": - "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - Content-Length: - - '166' - Content-Type: - - application/json - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"ad82ad12-a30e-47d9-965b-da368954abef\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"abc4b474-c213-48be-951e-971021acd729\",\r\n \"publicIPAddressVersion\": - \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": - 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n - \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n - \ }\r\n}" - headers: - azure-asyncnotification: - - Enabled - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b0ed07-c582-4afa-9bfa-3c5739c879bd?api-version=2020-11-01 - cache-control: - - no-cache - content-length: - - '687' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:33 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - a55e52c6-682d-4c1c-a4f9-d77dc0072f01 - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 201 - message: Created -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/06b0ed07-c582-4afa-9bfa-3c5739c879bd?api-version=2020-11-01 - response: - body: - string: "{\r\n \"status\": \"Succeeded\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '29' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:34 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - c498e59f-f1ea-498e-835d-adbdaf1dcbf6 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network public-ip create - Connection: - - keep-alive - ParameterSetName: - - -g -n --sku - User-Agent: - - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 - response: - body: - string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n - \ \"etag\": \"W/\\\"b0685347-7d06-4c5f-9387-5f2094f84d7a\\\"\",\r\n \"location\": - \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"abc4b474-c213-48be-951e-971021acd729\",\r\n \"ipAddress\": - \"40.78.5.40\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": - \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n - \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": - {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '720' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:35 GMT - etag: - - W/"b0685347-7d06-4c5f-9387-5f2094f84d7a" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - be0353f0-c9fa-4c21-8617-99c300ca562b - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9\\\"\",\r\n \"type\": - \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": - \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": - \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": - [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": - [],\r\n \"natRuleCollections\": []\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '691' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:36 GMT - etag: - - W/"b1fcbfd3-6ace-46e3-b9ad-88aa06ab93f9" - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - edfc9822-54fb-4d58-a793-2b143cd3b0d0 - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", - "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": - [], "networkRuleCollections": [], "ipConfigurations": [{"properties": {"subnet": - {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet"}, - "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3"}}, - "name": "myipconfig3"}], "threatIntelMode": "Alert", "sku": {"name": "AZFW_VNet", - "tier": "Standard"}, "additionalProperties": {}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall ip-config create - Connection: - - keep-alive - Content-Length: - - '965' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n -f --public-ip-address --vnet-name - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 - response: - body: - string: "{\r\n \"error\": {\r\n \"code\": \"InvalidResourceReference\",\r\n - \ \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_AZURE_FIREWALL_MANAGEMENT_IP_CONFIGLMEHUXIFBT7EW5OPBADANL4SXUSX5YH/providers/Microsoft.Network/virtualNetworks/MYVNET - referenced by resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1 - was not found. Please make sure that the referenced resource exists, and that - both resources are in the same region.\",\r\n \"details\": [\r\n {\r\n - \ \"code\": \"NotFound\",\r\n \"message\": \"Resource /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/CLI_TEST_AZURE_FIREWALL_MANAGEMENT_IP_CONFIGLMEHUXIFBT7EW5OPBADANL4SXUSX5YH/providers/Microsoft.Network/virtualNetworks/MYVNET - not found.\"\r\n }\r\n ]\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '924' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 12 Apr 2021 06:18:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - f0507c54-49a0-469c-936d-dff7e6e51deb - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 400 - message: Bad Request -version: 1 diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml index 614d69d26dd..2ae4a1b4daa 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_virtual_hub.yaml @@ -13,15 +13,15 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-11T01:03:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +30,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:03:42 GMT + - Mon, 18 Jan 2021 09:52:57 GMT expires: - '-1' pragma: @@ -62,8 +62,8 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 accept-language: - en-US method: PUT @@ -71,7 +71,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"39b18ac0-c653-443f-9c54-eadc8467733b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"916f1a93-b4bf-4f78-803e-9ca848ea42d6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -80,7 +80,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c6ddf592-5a63-4a8b-9e71-eea35e85ed67?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ac589f65-8274-4065-a389-52a539b63839?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -88,7 +88,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:03:52 GMT + - Mon, 18 Jan 2021 09:53:05 GMT expires: - '-1' pragma: @@ -101,9 +101,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 61fe6376-c503-4457-b6f5-9a553b26588c + - f5d92f94-208b-4c49-831c-d12cfb3fe76d x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -121,10 +121,10 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/c6ddf592-5a63-4a8b-9e71-eea35e85ed67?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ac589f65-8274-4065-a389-52a539b63839?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +136,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:02 GMT + - Mon, 18 Jan 2021 09:53:16 GMT expires: - '-1' pragma: @@ -153,7 +153,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5e9b1807-b8d0-48c1-8095-a33d3810eb3f + - 8c564486-9ef1-4998-a35c-beb338146d2b status: code: 200 message: OK @@ -171,14 +171,14 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvwan\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan\",\r\n - \ \"etag\": \"W/\\\"4cdb6911-aff4-426b-828e-b6b85b2bd016\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b875d444-7491-44c2-9717-9a0411fa8a38\\\"\",\r\n \"type\": \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": @@ -191,9 +191,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:03 GMT + - Mon, 18 Jan 2021 09:53:16 GMT etag: - - W/"4cdb6911-aff4-426b-828e-b6b85b2bd016" + - W/"b875d444-7491-44c2-9717-9a0411fa8a38" expires: - '-1' pragma: @@ -210,7 +210,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c8987979-5102-461f-bc80-32fe789d720f + - 069eb25f-131c-456e-9188-4d031a0817ba status: code: 200 message: OK @@ -233,8 +233,8 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 accept-language: - en-US method: PUT @@ -242,7 +242,7 @@ interactions: response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"9a9bc615-762f-46f8-8393-ee5c129e9233\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"c66da45f-936f-4f92-b409-f806bb78feb6\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -254,7 +254,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -262,7 +262,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:15 GMT + - Mon, 18 Jan 2021 09:53:25 GMT expires: - '-1' pragma: @@ -275,9 +275,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a58b86d6-4875-46bf-994e-042c67d4e4a9 + - d880f7c4-6f9b-4c1a-a663-01622200ce8f x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1191' status: code: 201 message: Created @@ -295,10 +295,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -310,7 +310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:25 GMT + - Mon, 18 Jan 2021 09:53:37 GMT expires: - '-1' pragma: @@ -327,7 +327,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1f072243-116b-48f8-8541-4453c8780e74 + - 7bb38ba7-b712-467f-a4a3-844ea155f384 status: code: 200 message: OK @@ -345,10 +345,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -360,7 +360,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:36 GMT + - Mon, 18 Jan 2021 09:53:47 GMT expires: - '-1' pragma: @@ -377,7 +377,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcb2b306-c8f4-4671-82fd-4eb2a9324ce4 + - 2777a635-8285-4ee5-936f-92df8209ce3d status: code: 200 message: OK @@ -395,10 +395,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -410,7 +410,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:04:56 GMT + - Mon, 18 Jan 2021 09:54:07 GMT expires: - '-1' pragma: @@ -427,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a738743-8b87-4fa5-87e5-a83fb6d19b65 + - 55df65c1-3a63-4323-b9be-8f729e896291 status: code: 200 message: OK @@ -445,10 +445,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -460,7 +460,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:05:17 GMT + - Mon, 18 Jan 2021 09:54:29 GMT expires: - '-1' pragma: @@ -477,7 +477,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be0a1ca7-8c4b-405a-8d5f-4f36b9f54790 + - 15e1b984-7cc6-46cc-b243-df770c674bcf status: code: 200 message: OK @@ -495,10 +495,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -510,7 +510,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:05:57 GMT + - Mon, 18 Jan 2021 09:55:09 GMT expires: - '-1' pragma: @@ -527,7 +527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8362433d-f7fd-4d74-860b-58860b0761fe + - 49853d83-c687-40d3-a827-92fe5a43a34f status: code: 200 message: OK @@ -545,10 +545,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -560,7 +560,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:06:38 GMT + - Mon, 18 Jan 2021 09:55:49 GMT expires: - '-1' pragma: @@ -577,7 +577,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3560c656-7da0-4c11-a9cf-9d133cdfa157 + - 9765c051-ec77-4a0d-ad92-9f7cba2e8ad2 status: code: 200 message: OK @@ -595,60 +595,10 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Sun, 11 Apr 2021 01:07:58 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - cd224187-ae78-4a93-901b-1fe4d63c03f1 - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network vhub create - Connection: - - keep-alive - ParameterSetName: - - -g -n --vwan --address-prefix -l --sku - User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/2043e6bd-e588-4109-a86f-640bfe275646?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/8c407d63-db5b-48c1-ae1e-4f8c1a39ed8a?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -660,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:10:39 GMT + - Mon, 18 Jan 2021 09:57:10 GMT expires: - '-1' pragma: @@ -677,7 +627,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 85e100f9-cd0b-4ef3-8128-d05f274aafca + - e74808d7-6bc3-4829-b969-f360616c227e status: code: 200 message: OK @@ -695,14 +645,14 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub?api-version=2020-05-01 response: body: string: "{\r\n \"name\": \"clitestvhub\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\",\r\n - \ \"etag\": \"W/\\\"be853a60-9a2b-42d7-87ed-adc86ca79e93\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d788b164-abf1-4f45-976b-a006e2aa8b58\\\"\",\r\n \"type\": \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": @@ -718,7 +668,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:10:40 GMT + - Mon, 18 Jan 2021 09:57:11 GMT expires: - '-1' pragma: @@ -735,7 +685,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a1e283b2-7bb8-4f64-912d-62f9567f8e27 + - db531e4e-abae-4efa-b5ee-f4b992df029e status: code: 200 message: OK @@ -753,15 +703,15 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-04-11T01:03:38Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -770,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:10:40 GMT + - Mon, 18 Jan 2021 09:57:11 GMT expires: - '-1' pragma: @@ -804,8 +754,8 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 accept-language: - en-US method: PUT @@ -813,7 +763,7 @@ interactions: response: body: string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"3b08713e-704f-44ab-b328-1224cb59253c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d1a934bc-e015-46bb-a411-3115f25003de\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n @@ -825,7 +775,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -833,7 +783,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:10:51 GMT + - Mon, 18 Jan 2021 09:57:21 GMT expires: - '-1' pragma: @@ -846,9 +796,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7d55b02-c6ca-4291-9576-6628508af8aa + - f3c37b04-200d-48ce-b7d9-b6341b8ec6df x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1194' status: code: 201 message: Created @@ -866,10 +816,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -881,7 +831,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:11:01 GMT + - Mon, 18 Jan 2021 09:57:31 GMT expires: - '-1' pragma: @@ -898,7 +848,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 47da974b-da92-464c-91ef-8f4c9cc1cb48 + - 1dc79dea-edf1-4f5b-979a-89a07910d07b status: code: 200 message: OK @@ -916,10 +866,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -931,7 +881,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:11:12 GMT + - Mon, 18 Jan 2021 09:57:42 GMT expires: - '-1' pragma: @@ -948,7 +898,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0fc0b717-08ae-4b5a-9eed-9bb3938f0003 + - 8ad6dd6a-e735-44fb-ace8-9d0a4f4e0489 status: code: 200 message: OK @@ -966,10 +916,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -981,7 +931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:11:33 GMT + - Mon, 18 Jan 2021 09:58:02 GMT expires: - '-1' pragma: @@ -998,7 +948,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 33eeeffd-777c-496a-b546-2d8cf1595152 + - f3372252-cbb5-4b48-8899-1684ac34ea1d status: code: 200 message: OK @@ -1016,10 +966,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1031,7 +981,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:11:53 GMT + - Mon, 18 Jan 2021 09:58:22 GMT expires: - '-1' pragma: @@ -1048,7 +998,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a3252f40-b480-472c-9b39-9006b5896dff + - 88ec2ffa-ccca-40ad-8f17-919945b28b8c status: code: 200 message: OK @@ -1066,10 +1016,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1081,7 +1031,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:12:33 GMT + - Mon, 18 Jan 2021 09:59:02 GMT expires: - '-1' pragma: @@ -1098,7 +1048,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 466cc87e-1ad6-40c5-a54e-eccf4467946e + - 8cc139e2-c3ed-4868-8ad0-13b607737227 status: code: 200 message: OK @@ -1116,10 +1066,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1131,7 +1081,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:13:14 GMT + - Mon, 18 Jan 2021 09:59:43 GMT expires: - '-1' pragma: @@ -1148,7 +1098,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d43e194b-9dc0-4e62-bc78-99978a0bb973 + - c5ea45ce-7dc8-4942-b4bc-e201769580d6 status: code: 200 message: OK @@ -1166,10 +1116,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1181,7 +1131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:14:34 GMT + - Mon, 18 Jan 2021 10:01:03 GMT expires: - '-1' pragma: @@ -1198,7 +1148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 658b28d5-c981-4fbf-a4e4-312f04d7adaa + - eb20d3ae-fc2c-4903-b251-5257e3723427 status: code: 200 message: OK @@ -1216,10 +1166,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1231,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:17:15 GMT + - Mon, 18 Jan 2021 10:03:44 GMT expires: - '-1' pragma: @@ -1248,7 +1198,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bfacfa8d-b3ba-4f07-a78e-327ab208fd8c + - 18aec7f9-a1fb-4b1e-b9f9-0dd9a55a949e status: code: 200 message: OK @@ -1266,10 +1216,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1281,7 +1231,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:18:56 GMT + - Mon, 18 Jan 2021 10:05:24 GMT expires: - '-1' pragma: @@ -1298,7 +1248,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cefe7740-80b3-43d2-a3c9-2a264243528e + - 7083e252-c0d3-4093-8260-d5788f0b0fa1 status: code: 200 message: OK @@ -1316,10 +1266,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1331,7 +1281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:20:36 GMT + - Mon, 18 Jan 2021 10:07:05 GMT expires: - '-1' pragma: @@ -1348,7 +1298,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1e2d5c9a-b5d9-48db-9427-4f5916a19467 + - 08b28e07-c2e8-4084-8e2e-407bd21abcda status: code: 200 message: OK @@ -1366,10 +1316,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1381,7 +1331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:22:17 GMT + - Mon, 18 Jan 2021 10:08:45 GMT expires: - '-1' pragma: @@ -1398,7 +1348,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9438f638-854f-41cd-8503-2eaa8e576b74 + - 54fcf849-8c09-4764-976b-cb20c084ff9c status: code: 200 message: OK @@ -1416,10 +1366,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1431,7 +1381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:23:58 GMT + - Mon, 18 Jan 2021 10:10:26 GMT expires: - '-1' pragma: @@ -1448,7 +1398,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 506d2d05-badf-4d07-9f98-ec25dec1830c + - 2998dba4-769b-4b79-a449-664d427f6f1d status: code: 200 message: OK @@ -1466,10 +1416,10 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1481,7 +1431,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:25:38 GMT + - Mon, 18 Jan 2021 10:12:06 GMT expires: - '-1' pragma: @@ -1498,7 +1448,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b7c4bcb7-dbc3-4cf7-b5c7-4756c7c40d7b + - 5a36c13d-23a8-4af6-830c-9cee2daa0f30 status: code: 200 message: OK @@ -1516,22 +1466,22 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1fb963fa-e5f7-4b50-b3a5-3a51d0d5a3de?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:27:19 GMT + - Mon, 18 Jan 2021 10:13:47 GMT expires: - '-1' pragma: @@ -1548,7 +1498,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6961963a-f80e-43e0-ad0d-a73414feef3b + - c548398b-5147-41cc-aff8-1a8ebede3aa1 status: code: 200 message: OK @@ -1566,22 +1516,34 @@ interactions: ParameterSetName: - -g -n --sku --count --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n + \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": + \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n + \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '992' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:28:59 GMT + - Mon, 18 Jan 2021 10:13:48 GMT + etag: + - W/"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc" expires: - '-1' pragma: @@ -1598,7 +1560,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3114defa-0021-4233-9c79-2017b0b63080 + - 86c4fc82-1d64-409f-bfff-0480c1ac8105 status: code: 200 message: OK @@ -1610,28 +1572,42 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n + \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": + \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n + \ }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '992' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:30:39 GMT + - Mon, 18 Jan 2021 10:13:49 GMT + etag: + - W/"b5cf5e9f-bf62-4262-b4b7-c8131adb74dc" expires: - '-1' pragma: @@ -1648,40 +1624,59 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 53714fa8-6aea-4e7b-b67a-991dc5b17fdd + - b0ffff77-a7df-4a53-99fb-3702a813cb87 status: code: 200 message: OK - request: - body: null + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "eastus2euap", "properties": {"hubIPAddresses": {"publicIPs": {"addresses": + [{"address": "20.39.24.98"}], "count": 1}, "privateIPAddress": "10.0.0.132"}, + "sku": {"name": "AZFW_Hub", "tier": "Standard"}, "additionalProperties": {}}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive + Content-Length: + - '443' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"ca290d3f-ca22-4ede-ab61-18a0207b19b0\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": + \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n + \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n + \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 cache-control: - no-cache content-length: - - '30' + - '752' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:32:20 GMT + - Mon, 18 Jan 2021 10:13:50 GMT expires: - '-1' pragma: @@ -1698,7 +1693,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2207db75-c483-47a0-a926-16ec3174f5ed + - 97ae91ba-0470-4bda-bbfa-d9900723e96d + x-ms-ratelimit-remaining-subscription-writes: + - '1189' status: code: 200 message: OK @@ -1710,16 +1707,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1731,7 +1728,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:34:01 GMT + - Mon, 18 Jan 2021 10:14:01 GMT expires: - '-1' pragma: @@ -1748,7 +1745,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d5c94b1e-3832-48e8-8724-b9bae4dfd86b + - c0ff8805-5925-44ea-a3bd-c3f914bbf6c3 status: code: 200 message: OK @@ -1760,16 +1757,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1781,7 +1778,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:35:42 GMT + - Mon, 18 Jan 2021 10:14:11 GMT expires: - '-1' pragma: @@ -1798,7 +1795,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b8963e8-6a05-474d-a622-5237922f3b92 + - 53e59b1c-a668-4b4e-adbe-e516a088d655 status: code: 200 message: OK @@ -1810,16 +1807,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1831,7 +1828,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:37:23 GMT + - Mon, 18 Jan 2021 10:14:31 GMT expires: - '-1' pragma: @@ -1848,7 +1845,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 58d29f9f-b87c-4c96-bb8e-58e7b70a37d9 + - 64a81a35-d88e-4757-9b40-d4dfb693e325 status: code: 200 message: OK @@ -1860,16 +1857,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1881,7 +1878,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:39:35 GMT + - Mon, 18 Jan 2021 10:15:11 GMT expires: - '-1' pragma: @@ -1898,7 +1895,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d4d2c353-672b-4082-873f-195bd9585c2e + - 815f2928-e502-4fb8-93f6-bf584ba337d2 status: code: 200 message: OK @@ -1910,16 +1907,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1931,7 +1928,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:41:16 GMT + - Mon, 18 Jan 2021 10:16:32 GMT expires: - '-1' pragma: @@ -1948,7 +1945,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 89985401-667c-4e48-8771-11218dcea09d + - 4ce2f5fd-b202-4c6d-ae0e-7753b483e917 status: code: 200 message: OK @@ -1960,16 +1957,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1981,7 +1978,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:42:57 GMT + - Mon, 18 Jan 2021 10:19:13 GMT expires: - '-1' pragma: @@ -1998,7 +1995,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 883fffb0-0941-40a5-88e3-5863f14b5804 + - f38bb448-c4c9-48ef-9648-5334f88179be status: code: 200 message: OK @@ -2010,16 +2007,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2031,7 +2028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:44:37 GMT + - Mon, 18 Jan 2021 10:20:53 GMT expires: - '-1' pragma: @@ -2048,7 +2045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - be902054-e23c-42ef-8e6a-9bba1cdff0a0 + - 02fdecdb-353e-4d84-ac6e-b983fc293620 status: code: 200 message: OK @@ -2060,28 +2057,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/6b2ec31e-0590-4c1d-b3d4-b2bc4e6580bd?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:46:18 GMT + - Mon, 18 Jan 2021 10:22:33 GMT expires: - '-1' pragma: @@ -2098,7 +2095,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7fe1581e-a206-44ee-abaf-53a3c3187f5c + - 94b722a5-fdbd-4c09-b2a7-b9cbf8cf01d7 status: code: 200 message: OK @@ -2110,28 +2107,38 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"5aa55c05-0890-4f69-8471-9003710dc1e0\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": + \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n + \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n + \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '753' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:47:58 GMT + - Mon, 18 Jan 2021 10:22:33 GMT + etag: + - W/"5aa55c05-0890-4f69-8471-9003710dc1e0" expires: - '-1' pragma: @@ -2148,7 +2155,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8d468c62-b1f6-4b76-ae1f-a0df7b42a366 + - b97a413a-4f26-4440-acd6-3c0c3ee0b67a status: code: 200 message: OK @@ -2164,41 +2171,36 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --sku --count --vhub --allow-active-ftp User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '433' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:49:38 GMT + - Mon, 18 Jan 2021 10:22:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - 564e6fee-16c8-4799-9261-4e90f6354a2f status: code: 200 message: OK @@ -2210,78 +2212,88 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-resource/12.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_virtual_hub000001?api-version=2020-10-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001","name":"cli_test_azure_firewall_virtual_hub000001","type":"Microsoft.Resources/resourceGroups","location":"eastus2euap","tags":{"product":"azurecli","cause":"automation","date":"2021-01-18T09:52:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '30' + - '433' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:51:19 GMT + - Mon, 18 Jan 2021 10:22:34 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: - nosniff - x-ms-arm-service-request-id: - - fa979616-6823-4786-8d44-5d9d8241b371 status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap"}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vwan create Connection: - keep-alive + Content-Length: + - '27' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --sku --count --vhub + - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n + \ \"etag\": \"W/\\\"3f1ca521-0cca-4e2f-958a-2ffe4ac2d267\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": + \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/242b35b3-3935-45b3-a4b0-8f3a4b1f5b58?api-version=2020-05-01 cache-control: - no-cache content-length: - - '30' + - '580' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:52:59 GMT + - Mon, 18 Jan 2021 10:22:47 GMT expires: - '-1' pragma: @@ -2291,17 +2303,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb5102a5-54cf-45c4-9593-7384ad1fe9de + - 25b16c4d-8785-49fa-a944-429bc225c89b + x-ms-ratelimit-remaining-subscription-writes: + - '1191' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2310,28 +2320,28 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/242b35b3-3935-45b3-a4b0-8f3a4b1f5b58?api-version=2020-05-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '29' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:54:40 GMT + - Mon, 18 Jan 2021 10:22:57 GMT expires: - '-1' pragma: @@ -2348,7 +2358,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7fcdee1-b99d-43e6-91e3-43019e8b4827 + - 391b06f2-909d-49a9-b49b-d18e96962247 status: code: 200 message: OK @@ -2360,28 +2370,35 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vwan create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -n -g --type User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2?api-version=2020-05-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"clitestvwan2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\",\r\n + \ \"etag\": \"W/\\\"d4ad56c6-da55-4a14-9d36-4f50dd786c7b\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualWans\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"disableVpnEncryption\": + false,\r\n \"allowBranchToBranchTraffic\": true,\r\n \"office365LocalBreakoutCategory\": + \"None\",\r\n \"type\": \"Standard\"\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '30' + - '581' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:56:22 GMT + - Mon, 18 Jan 2021 10:22:58 GMT + etag: + - W/"d4ad56c6-da55-4a14-9d36-4f50dd786c7b" expires: - '-1' pragma: @@ -2398,40 +2415,59 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 047c5e92-e1d7-4397-862f-9722f225f5a2 + - fb9ea0e2-ed14-49da-9308-555134d24b13 status: code: 200 message: OK - request: - body: null + body: '{"location": "eastus2euap", "properties": {"virtualWan": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2"}, + "addressPrefix": "10.0.0.0/24", "sku": "Standard"}}' headers: Accept: - application/json Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive + Content-Length: + - '315' + Content-Type: + - application/json; charset=utf-8 ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 response: body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" + string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n + \ \"etag\": \"W/\\\"95157c32-7044-4043-88d7-b72e4f924e19\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"virtualHubRouteTableV2s\": + [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\"\r\n + \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"None\"\r\n + \ }\r\n}" headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 cache-control: - no-cache content-length: - - '30' + - '903' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:58:02 GMT + - Mon, 18 Jan 2021 10:23:06 GMT expires: - '-1' pragma: @@ -2441,17 +2477,15 @@ interactions: - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f2e9a2f1-22f2-45ec-b8ba-602c01e25f5c + - 7f2c6022-963b-4fc3-9e84-edecf8be641b + x-ms-ratelimit-remaining-subscription-writes: + - '1187' status: - code: 200 - message: OK + code: 201 + message: Created - request: body: null headers: @@ -2460,16 +2494,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2481,7 +2515,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 01:59:43 GMT + - Mon, 18 Jan 2021 10:23:17 GMT expires: - '-1' pragma: @@ -2498,7 +2532,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1abae43-71b7-410e-9cb8-d8aab6ac2e4f + - 75488856-e37a-43e0-b9e9-6834319b9c03 status: code: 200 message: OK @@ -2510,16 +2544,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2531,7 +2565,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:01:23 GMT + - Mon, 18 Jan 2021 10:23:27 GMT expires: - '-1' pragma: @@ -2548,7 +2582,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b84d9c75-37c9-41ce-a1b0-c5273f305b3b + - 19693df5-8a13-47ff-8bf7-25e7beb4091e status: code: 200 message: OK @@ -2560,16 +2594,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2581,7 +2615,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:03:04 GMT + - Mon, 18 Jan 2021 10:23:47 GMT expires: - '-1' pragma: @@ -2598,7 +2632,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0cbaa10b-f614-4e8e-82ad-327cdd330869 + - 9fc8352d-81dd-48a1-b35b-1724e8c3976b status: code: 200 message: OK @@ -2610,16 +2644,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2631,7 +2665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:04:45 GMT + - Mon, 18 Jan 2021 10:24:07 GMT expires: - '-1' pragma: @@ -2648,7 +2682,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9e8541c3-a646-4982-869e-f75d469007cc + - 8388216d-4b84-43cf-92fd-73bc2040c661 status: code: 200 message: OK @@ -2660,16 +2694,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2681,7 +2715,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:06:26 GMT + - Mon, 18 Jan 2021 10:24:48 GMT expires: - '-1' pragma: @@ -2698,7 +2732,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - edf7c0f8-6310-486b-9984-43126d3f6725 + - a97e2413-3a32-40e2-91da-467a86071001 status: code: 200 message: OK @@ -2710,16 +2744,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2731,7 +2765,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:08:06 GMT + - Mon, 18 Jan 2021 10:25:28 GMT expires: - '-1' pragma: @@ -2748,7 +2782,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1888ea2b-44f8-48a0-a9e4-e599cec003a0 + - 9bcf182d-af15-41fe-9f78-8a5391c70f37 status: code: 200 message: OK @@ -2760,16 +2794,510 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/4e5c2916-5b99-45dc-80d6-92a537082b9d?api-version=2020-05-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:26:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7ea2ed4f-82a3-47f9-8e1d-511a180932c6 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vhub create + Connection: + - keep-alive + ParameterSetName: + - -g -n --vwan --address-prefix -l --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2?api-version=2020-05-01 + response: + body: + string: "{\r\n \"name\": \"clitestvhub2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\",\r\n + \ \"etag\": \"W/\\\"69f5682d-eacf-4347-b34f-1dd79c3bbe11\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualHubs\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"virtualHubRouteTableV2s\": + [],\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"virtualRouterAsn\": + 0,\r\n \"virtualRouterIps\": [],\r\n \"routeTable\": {\r\n \"routes\": + []\r\n },\r\n \"virtualWan\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualWans/clitestvwan2\"\r\n + \ },\r\n \"sku\": \"Standard\",\r\n \"routingState\": \"Provisioning\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '912' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:26:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - db60cc99-36bc-47ef-b360-269305134dae + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"5aa55c05-0890-4f69-8471-9003710dc1e0\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": + \"10.0.0.132\",\r\n \"publicIPs\": {\r\n \"addresses\": [\r\n + \ {\r\n \"address\": \"20.39.24.98\"\r\n }\r\n + \ ],\r\n \"count\": 1\r\n }\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '753' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:26:51 GMT + etag: + - W/"5aa55c05-0890-4f69-8471-9003710dc1e0" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - de523231-f4d7-447b-a732-c62873d47d5a + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "eastus2euap", "properties": {"virtualHub": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2"}, + "hubIPAddresses": {"publicIPs": {"addresses": [{"address": "20.39.24.98"}], + "count": 1}, "privateIPAddress": "10.0.0.132"}, "sku": {"name": "AZFW_Hub", + "tier": "Standard"}, "additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + Content-Length: + - '664' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"a5219a95-aa4f-4695-bafa-0fccd4e137dc\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n + \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": + \"20.39.24.98\"\r\n }\r\n ],\r\n \"count\": 1\r\n }\r\n + \ }\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '992' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:26:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 601a5064-ad26-43f2-8f24-8007ce1227ad + x-ms-ratelimit-remaining-subscription-writes: + - '1193' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:27:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 07ff8a5e-a791-4bab-a667-9e648c9a096e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:27:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0dcbaef1-5321-4474-a2ec-5fd5f88048ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:27:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7c030a88-f68d-4209-8e96-9f0bc691b35f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:28:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 4ae8c195-3332-450c-93e8-7f7f8ab90804 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:29:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a82a437f-fe5e-4c9e-bc40-83ef2b1a1c59 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2781,7 +3309,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:09:46 GMT + - Mon, 18 Jan 2021 10:32:15 GMT expires: - '-1' pragma: @@ -2798,7 +3326,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80078fb7-99a2-4238-bd2e-082af9551d9a + - adb8b202-602e-4215-821a-c2e4adfdf4b8 status: code: 200 message: OK @@ -2810,16 +3338,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2831,7 +3359,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:11:27 GMT + - Mon, 18 Jan 2021 10:33:55 GMT expires: - '-1' pragma: @@ -2848,7 +3376,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f4ae228b-284e-4e77-8266-0939f72c2af8 + - e80c706a-cce6-41b5-b3a1-aa96cde78056 status: code: 200 message: OK @@ -2860,16 +3388,16 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2881,7 +3409,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:13:08 GMT + - Mon, 18 Jan 2021 10:35:36 GMT expires: - '-1' pragma: @@ -2898,7 +3426,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0fcc5ec1-bea9-4a8d-9d6d-f06f4eee6aa9 + - e8d36080-13cb-4ad2-9949-dcf6e08b7bec status: code: 200 message: OK @@ -2910,29 +3438,290 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall create + - network firewall update Connection: - keep-alive ParameterSetName: - - -g -n --sku --count --vhub + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:37:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d4d50984-ac81-4ef0-af10-f5195a3adcef + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:38:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8c9d72a8-3b2c-4b60-8637-b9fd89e2c7b2 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:40:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6bab0900-9f58-4851-9d5e-0b8f58a9c12b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:42:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c41f99ae-d4bb-4d67-a50a-fac8acf1926c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/ee712fdb-e3fb-4252-b0e1-b7efb798dfc2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 18 Jan 2021 10:43:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 265847f5-46ff-4f83-a5f3-30f97c79008c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall update + Connection: + - keep-alive + ParameterSetName: + - -g -n --vhub User-Agent: - - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.18 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.17.1 method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus2euap/operations/1651935f-ae74-4192-846e-df368552821f?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 response: body: - string: "{\r\n \"status\": \"Failed\",\r\n \"error\": {\r\n \"code\": \"InternalServerError\",\r\n - \ \"message\": \"An error occurred.\",\r\n \"details\": []\r\n }\r\n}" + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"9f89a02e-bb12-4657-af7b-a2dd9077a4a9\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"eastus2euap\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": + {\r\n \"name\": \"AZFW_Hub\",\r\n \"tier\": \"Standard\"\r\n },\r\n + \ \"additionalProperties\": {},\r\n \"virtualHub\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_virtual_hub000001/providers/Microsoft.Network/virtualHubs/clitestvhub2\"\r\n + \ },\r\n \"hubIPAddresses\": {\r\n \"privateIPAddress\": \"10.0.0.132\",\r\n + \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": + \"20.47.144.61\"\r\n }\r\n ],\r\n \"count\": 1\r\n + \ }\r\n }\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '139' + - '994' content-type: - application/json; charset=utf-8 date: - - Sun, 11 Apr 2021 02:14:48 GMT + - Mon, 18 Jan 2021 10:43:57 GMT + etag: + - W/"9f89a02e-bb12-4657-af7b-a2dd9077a4a9" expires: - '-1' pragma: @@ -2949,7 +3738,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b633270-4615-4ffd-acd9-ebd29635c0e3 + - a36b218a-5186-4c6e-a846-8bcf3a3ed972 status: code: 200 message: OK diff --git a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py index 212fcfd6916..d2b5fd29a2e 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py +++ b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py @@ -110,6 +110,7 @@ def test_azure_firewall_management_ip_config(self, resource_group): # self.check('subnet.id', subnet_id_ip_config) # ]) + self.cmd('network vnet create -g {rg} -n {vnet} --subnet-name "AzureFirewallSubnet" --address-prefixes 10.0.0.0/16 --subnet-prefixes 10.0.0.0/24') self.cmd('network firewall ip-config create -g {rg} -n {ipconfig3} -f {af} --public-ip-address {pubip3} --vnet-name {vnet}', checks=[ self.check('name', '{ipconfig3}'), # self.check('subnet', None) From db504ea26be932d0bdd89d4e21cbf749cc58f3ba Mon Sep 17 00:00:00 2001 From: msyyc <70930885+msyyc@users.noreply.github.com> Date: Mon, 12 Apr 2021 20:48:20 +0800 Subject: [PATCH 5/5] test2 --- ...t_azure_firewall_management_ip_config.yaml | 2621 +++++++++++++++++ .../latest/test_azure_firewall_scenario.py | 2 +- 2 files changed, 2622 insertions(+), 1 deletion(-) create mode 100644 src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml new file mode 100644 index 00000000000..b87a0ae7a39 --- /dev/null +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_management_ip_config.yaml @@ -0,0 +1,2621 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:09 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + Content-Length: + - '66' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"457ccf02-7a08-4732-8088-fe595b1b3a0f\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fb8768d4-770d-42ab-8cec-8e74fc1eccd7?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '690' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3b1bdd2f-e55f-46e6-a519-a9a4cc6f4ddf + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fb8768d4-770d-42ab-8cec-8e74fc1eccd7?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dc9bf8cf-efcf-4de3-96df-d66028ee5583 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"b9a9d627-63b1-48ea-b5a7-7fe68d1e0166\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:25 GMT + etag: + - W/"b9a9d627-63b1-48ea-b5a7-7fe68d1e0166" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5295c30d-667b-4167-8a65-c673a5ba1784 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '166' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n + \ \"etag\": \"W/\\\"b191b023-c85e-4ce4-8e00-402a8b01915b\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"77e32a68-d7bb-4661-9fc8-53a96dafb6ed\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8b65797e-e956-4db8-96e2-5c7e61823d07?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '685' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d4e34682-e0f5-45ca-9ac7-c0fcb0db8ce5 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8b65797e-e956-4db8-96e2-5c7e61823d07?api-version=2020-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5c90000a-db49-4355-b822-e463c66023b3 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip\",\r\n + \ \"etag\": \"W/\\\"39989386-d104-4ee8-91c9-49bbda787383\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"77e32a68-d7bb-4661-9fc8-53a96dafb6ed\",\r\n \"ipAddress\": + \"104.40.21.163\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '721' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:34 GMT + etag: + - W/"39989386-d104-4ee8-91c9-49bbda787383" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 959986ae-6135-444e-8a57-d5be1643f474 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '166' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n + \ \"etag\": \"W/\\\"c29f7333-af26-424f-b528-c906abb14ce5\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"e9ef30c8-ce37-4285-aaa1-09f8439d4366\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a34ea936-1e05-4e2a-b2df-baac0d6f0dcd?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '687' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5583e750-3256-4757-81f7-98e5a3931596 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/a34ea936-1e05-4e2a-b2df-baac0d6f0dcd?api-version=2020-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8cd61306-2aaf-4903-83cb-7a2a50d6e56f + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip2\",\r\n + \ \"etag\": \"W/\\\"9f83e634-e59c-4ace-a7c2-4b7294cce4ac\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e9ef30c8-ce37-4285-aaa1-09f8439d4366\",\r\n \"ipAddress\": + \"13.88.16.202\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:41 GMT + etag: + - W/"9f83e634-e59c-4ace-a7c2-4b7294cce4ac" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5f5a7451-6530-413b-83a5-a44830bb4646 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:42 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '166' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n + \ \"etag\": \"W/\\\"e7c48017-9866-4370-8a19-69ccbf2f8cff\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"640acee7-0268-44a9-86fb-e86b211e1447\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b467bcbb-bb1d-464f-b1d5-fb6ce10ec335?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '687' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - c3d8741e-abd7-4a4f-b2f6-83a2dc691c0d + x-ms-ratelimit-remaining-subscription-writes: + - '1189' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b467bcbb-bb1d-464f-b1d5-fb6ce10ec335?api-version=2020-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 6ed940fe-2f6d-4887-913d-dfe40ebffba0 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\",\r\n + \ \"etag\": \"W/\\\"4ab9fabf-3f5c-438c-a89a-dfd9e30a3c84\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"640acee7-0268-44a9-86fb-e86b211e1447\",\r\n \"ipAddress\": + \"13.88.22.24\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '721' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:49 GMT + etag: + - W/"4ab9fabf-3f5c-438c-a89a-dfd9e30a3c84" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - ec08457b-260e-4fb5-8d39-c92865994ba9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:50 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "sku": {"name": "Standard"}, "properties": {"publicIPAllocationMethod": + "Static", "publicIPAddressVersion": "IPv4", "idleTimeoutInMinutes": 4}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + Content-Length: + - '166' + Content-Type: + - application/json + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n + \ \"etag\": \"W/\\\"fadd9ac3-6520-46b7-830b-d87f75be0e7a\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"61e95a20-ba23-428d-88db-bff45c8159b2\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Static\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b5cd098-059c-46b5-a6a9-cf3298b0fd88?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '687' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9fffd9df-1b30-4cae-82c1-b7d509032147 + x-ms-ratelimit-remaining-subscription-writes: + - '1182' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/0b5cd098-059c-46b5-a6a9-cf3298b0fd88?api-version=2020-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:56 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a66cf26b-e4f8-496e-80c5-fdf70c3935a7 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network public-ip create + Connection: + - keep-alive + ParameterSetName: + - -g -n --sku + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"pubip4\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip4\",\r\n + \ \"etag\": \"W/\\\"9e16695b-1420-49bc-89d7-0d0ec4efe10d\\\"\",\r\n \"location\": + \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"61e95a20-ba23-428d-88db-bff45c8159b2\",\r\n \"ipAddress\": + \"40.83.184.54\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \"Static\",\r\n \"idleTimeoutInMinutes\": 4,\r\n \"ipTags\": []\r\n + \ },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n \"sku\": + {\r\n \"name\": \"Standard\",\r\n \"tier\": \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '722' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:56 GMT + etag: + - W/"9e16695b-1420-49bc-89d7-0d0ec4efe10d" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - cb9ca1b9-d855-4b12-a13c-216e6508d3fa + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name --address-prefixes --subnet-prefixes + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_management_ip_config000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001","name":"test_azure_firewall_management_ip_config000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-04-12T09:21:05Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '428' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:21:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": + ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", + "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + Content-Length: + - '217' + Content-Type: + - application/json + ParameterSetName: + - -g -n --subnet-name --address-prefixes --subnet-prefixes + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n + \ \"etag\": \"W/\\\"6954c074-9c09-44f9-a95f-f272ce2e6f76\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"e0f88094-ef78-44db-b7b9-3594d147c5b9\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n + \ \"etag\": \"W/\\\"6954c074-9c09-44f9-a95f-f272ce2e6f76\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9f8a21d-63e4-4eb0-9311-a11e88ecb7fd?api-version=2020-11-01 + cache-control: + - no-cache + content-length: + - '1430' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7f731169-0c5b-43ed-a13a-ad3fd0c286be + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name --address-prefixes --subnet-prefixes + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c9f8a21d-63e4-4eb0-9311-a11e88ecb7fd?api-version=2020-11-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3e762f64-07de-4023-86e1-120ce94d9001 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network vnet create + Connection: + - keep-alive + ParameterSetName: + - -g -n --subnet-name --address-prefixes --subnet-prefixes + User-Agent: + - AZURECLI/2.21.0 azsdk-python-azure-mgmt-network/18.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2020-11-01 + response: + body: + string: "{\r\n \"name\": \"myvnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet\",\r\n + \ \"etag\": \"W/\\\"67ddcb0b-2e5d-409f-8b06-f065a61a71fd\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n + \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"e0f88094-ef78-44db-b7b9-3594d147c5b9\",\r\n \"addressSpace\": + {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n + \ },\r\n \"dhcpOptions\": {\r\n \"dnsServers\": []\r\n },\r\n + \ \"subnets\": [\r\n {\r\n \"name\": \"AzureFirewallSubnet\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\",\r\n + \ \"etag\": \"W/\\\"67ddcb0b-2e5d-409f-8b06-f065a61a71fd\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": + [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1432' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:07 GMT + etag: + - W/"67ddcb0b-2e5d-409f-8b06-f065a61a71fd" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2aae371e-33e0-43a3-85d3-62ca3f4f004e + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"b9a9d627-63b1-48ea-b5a7-7fe68d1e0166\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:07 GMT + etag: + - W/"b9a9d627-63b1-48ea-b5a7-7fe68d1e0166" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 60a13e4a-4048-44be-aa21-738113bfa2de + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": + [], "networkRuleCollections": [], "ipConfigurations": [{"properties": {"subnet": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet"}, + "publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3"}}, + "name": "myipconfig3"}], "threatIntelMode": "Alert", "sku": {"name": "AZFW_VNet", + "tier": "Standard"}, "additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + Content-Length: + - '965' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"dcb2e69c-e955-410a-8181-8ba6496d8747\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n + \ \"etag\": \"W/\\\"dcb2e69c-e955-410a-8181-8ba6496d8747\\\"\",\r\n + \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": + [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": + []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '1816' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f07af7c0-cc31-46ed-9dc4-ba33988717f2 + x-ms-ratelimit-remaining-subscription-writes: + - '1196' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0de0336c-ad87-43aa-ab64-bf4ad1d8c1e8 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9f7857af-b08c-4210-a870-ebcb35841b95 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:22:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2b05a612-18c1-4ca0-845a-ba6838978e94 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:23:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - fd89839e-906f-4234-9c94-7ebed5e292d5 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:24:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5d4930db-3e53-4035-af4a-82810908bdd1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/47497106-ad4d-4d45-9a23-d0de5110dc5f?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:27:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 848a2a57-685d-41d4-9349-7a5a9764bd53 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config create + Connection: + - keep-alive + ParameterSetName: + - -g -n -f --public-ip-address --vnet-name + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"7892bbd4-9bb9-441b-9056-252d68dacde7\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n + \ \"etag\": \"W/\\\"7892bbd4-9bb9-441b-9056-252d68dacde7\\\"\",\r\n + \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": + [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1860' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:27:30 GMT + etag: + - W/"7892bbd4-9bb9-441b-9056-252d68dacde7" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 972b155b-627a-42ff-80af-3af6a331932b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"7892bbd4-9bb9-441b-9056-252d68dacde7\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [\r\n {\r\n \"name\": \"myipconfig3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1/azureFirewallIpConfigurations/myipconfig3\",\r\n + \ \"etag\": \"W/\\\"7892bbd4-9bb9-441b-9056-252d68dacde7\\\"\",\r\n + \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": + \"Dynamic\",\r\n \"publicIPAddress\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/publicIPAddresses/pubip3\"\r\n + \ },\r\n \"subnet\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet/subnets/AzureFirewallSubnet\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"networkRuleCollections\": + [],\r\n \"applicationRuleCollections\": [],\r\n \"natRuleCollections\": + []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1860' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:27:31 GMT + etag: + - W/"7892bbd4-9bb9-441b-9056-252d68dacde7" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8492187e-9823-473f-aea0-c08ed4cbdc5e + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": + [], "networkRuleCollections": [], "threatIntelMode": "Alert", "sku": {"name": + "AZFW_VNet", "tier": "Standard"}, "additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + Content-Length: + - '433' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"84c750cc-7060-4255-9b11-6786870b2775\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '690' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:27:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - d5653922-7547-40db-948a-10d44efcaf11 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:27:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - dc0b819a-3152-4ebc-a006-e767ae7cf788 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:28:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 750b4750-858b-4deb-8b78-c84a7413a64c + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:28:43 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - f5e1b1a8-d661-4f5d-8709-fc4839f9a1df + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:30:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 1889bd11-a087-4fbd-9c50-59ff6eb90761 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"InProgress\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '30' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:32:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 9c58e04f-c913-4c52-a2dd-37b522563d34 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1b40c15c-fa81-47dd-a6f1-5cf32ce4f790?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 39a612ea-9175-4fae-a90e-315fccf6b888 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"d14e095f-4a58-4c91-bff7-a08d17055f4c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:25 GMT + etag: + - W/"d14e095f-4a58-4c91-bff7-a08d17055f4c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 8ec5c4f6-d2e6-4771-80d9-16b4bb47d085 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"d14e095f-4a58-4c91-bff7-a08d17055f4c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:24 GMT + etag: + - W/"d14e095f-4a58-4c91-bff7-a08d17055f4c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 7c72d72b-d293-4506-a683-85b281d908f4 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": + [], "networkRuleCollections": [], "threatIntelMode": "Alert", "sku": {"name": + "AZFW_VNet", "tier": "Standard"}, "additionalProperties": {}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + Content-Length: + - '433' + Content-Type: + - application/json; charset=utf-8 + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"d14e095f-4a58-4c91-bff7-a08d17055f4c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/91052340-b111-4f0d-8320-67a10b1e240c?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 3025379b-69e6-46f2-a601-e16aa0d67062 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/91052340-b111-4f0d-8320-67a10b1e240c?api-version=2020-07-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:55 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - a7366291-3ceb-4500-be8d-10d4ef6ae261 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall ip-config delete + Connection: + - keep-alive + ParameterSetName: + - -g -f -n + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"d14e095f-4a58-4c91-bff7-a08d17055f4c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:56 GMT + etag: + - W/"d14e095f-4a58-4c91-bff7-a08d17055f4c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 0012b0a0-69e0-4914-b888-9292bd667ac9 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall management-ip-config show + Connection: + - keep-alive + ParameterSetName: + - -g -f + User-Agent: + - python/3.7.3 (Windows-10-10.0.19041-SP0) msrest/0.6.21 msrest_azure/0.6.3 + azure-mgmt-network/13.0.0 Azure-SDK-For-Python AZURECLI/2.21.0 + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1?api-version=2020-07-01 + response: + body: + string: "{\r\n \"name\": \"af1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"d14e095f-4a58-4c91-bff7-a08d17055f4c\\\"\",\r\n \"type\": + \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"sku\": {\r\n \"name\": + \"AZFW_VNet\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"threatIntelMode\": + \"Alert\",\r\n \"additionalProperties\": {},\r\n \"ipConfigurations\": + [],\r\n \"networkRuleCollections\": [],\r\n \"applicationRuleCollections\": + [],\r\n \"natRuleCollections\": []\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '691' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 12 Apr 2021 09:34:56 GMT + etag: + - W/"d14e095f-4a58-4c91-bff7-a08d17055f4c" + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - e0559310-eed3-4b2a-872e-3afe4b875ede + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py index d2b5fd29a2e..3a4225b178a 100644 --- a/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py +++ b/src/azure-firewall/azext_firewall/tests/latest/test_azure_firewall_scenario.py @@ -69,7 +69,7 @@ def test_azure_firewall_ip_config(self, resource_group): self.cmd('network firewall ip-config delete -g {rg} -n {ipconfig2} -f {af}') self.cmd('network firewall ip-config delete -g {rg} -n {ipconfig} -f {af}') - @ResourceGroupPreparer(name_prefix='cli_test_azure_firewall_management_ip_config') + @ResourceGroupPreparer(name_prefix='test_azure_firewall_management_ip_config') def test_azure_firewall_management_ip_config(self, resource_group): self.kwargs.update({ 'af': 'af1',