diff --git a/src/azure-firewall/HISTORY.rst b/src/azure-firewall/HISTORY.rst index eabe0cbbb6b..593e1dd40f4 100644 --- a/src/azure-firewall/HISTORY.rst +++ b/src/azure-firewall/HISTORY.rst @@ -2,14 +2,16 @@ Release History =============== -0.9.1 + +0.10.0 ++++++ +* `az network firewall create`: Add new parameter `--tier` * Migrate to Track2 SDK. 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' +* `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 ++++++ 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 0389afb75d0..aae784a9312 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, @@ -618,7 +618,7 @@ def update_azure_firewall_policies(cmd, user_assigned_identities_instance[user_assigned_identity] = user_assigned_indentity_instance identity_instance = ManagedServiceIdentity( type="UserAssigned", - Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties=user_assigned_identities_instance + user_assigned_identities=user_assigned_identities_instance ) instance.identity = identity_instance @@ -626,12 +626,11 @@ def update_azure_firewall_policies(cmd, def set_azure_firewall_policies(cmd, resource_group_name, firewall_policy_name, parameters): - # Firewall Policy can't contain premium only properties - Identity - # if parameters.identity is None: - # ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') + if parameters.identity is None: + ManagedServiceIdentity = cmd.get_models('ManagedServiceIdentity') - # identity = ManagedServiceIdentity(type="None", Components1Jq1T4ISchemasManagedserviceidentityPropertiesUserassignedidentitiesAdditionalproperties=None) - # parameters.identity = identity + identity = ManagedServiceIdentity(type="None", user_assigned_identities=None) + parameters.identity = identity client = network_client_factory(cmd.cli_ctx).firewall_policies return client.begin_create_or_update(resource_group_name, firewall_policy_name, parameters) 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 795c9e23a55..84aaeb03549 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,12 @@ interactions: ParameterSetName: - -g -n User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:23:56Z"},"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-05-20T01:27:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:03 GMT + - Thu, 20 May 2021 01:27:56 GMT expires: - '-1' pragma: @@ -62,13 +59,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"0f56a568-3ec0-4603-8ec7-ec079e6db98f\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"219ae518-30f6-429c-87a7-beaad80ee048\\\"\",\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\": @@ -79,7 +76,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/7973ec7b-19f7-4b38-b5e1-1da330ebae65?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f53945d5-89c2-4d1a-aae0-216f1b49332a?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -87,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:11 GMT + - Thu, 20 May 2021 01:28:03 GMT expires: - '-1' pragma: @@ -100,9 +97,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 63f1d189-7c0a-4645-9bb4-deb6f089dace + - 12ae35cf-e257-4488-bdb7-96322e060ce0 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -120,9 +117,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/7973ec7b-19f7-4b38-b5e1-1da330ebae65?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f53945d5-89c2-4d1a-aae0-216f1b49332a?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -134,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:21 GMT + - Thu, 20 May 2021 01:28:13 GMT expires: - '-1' pragma: @@ -151,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e7cca5e1-c2c7-45ac-8370-283469216fca + - 4dd71247-2270-450a-b7eb-754a24c125a9 status: code: 200 message: OK @@ -169,13 +166,13 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"1460d453-456c-40ce-acdd-d03588db9971\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eb3cac72-915d-407c-9535-e4a010088cbb\\\"\",\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\": @@ -190,9 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:21 GMT + - Thu, 20 May 2021 01:28:13 GMT etag: - - W/"1460d453-456c-40ce-acdd-d03588db9971" + - W/"eb3cac72-915d-407c-9535-e4a010088cbb" expires: - '-1' pragma: @@ -209,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 596c7742-bfc7-4e39-a954-8c070c5dda5d + - b2742eb3-13b9-4045-945d-dfc8f2003e3c status: code: 200 message: OK @@ -227,15 +224,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:23:56Z"},"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-05-20T01:27:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -244,7 +238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:24 GMT + - Thu, 20 May 2021 01:28:15 GMT expires: - '-1' pragma: @@ -277,15 +271,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"6a0ab9ff-ae21-42bc-ba40-4d50830df0be\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"3667469d-12fb-46ef-89ed-64a0bebae769\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"38a26eb5-aaaa-46a8-8fe1-d770bf20048e\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"fd9cdbbd-ab93-4dd0-a77b-86992e059035\",\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 @@ -294,7 +288,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/737c8956-d295-43ce-8a7f-4488495d39ec?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e551aea-5803-4085-9e5d-19d512f5c561?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -302,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:30 GMT + - Thu, 20 May 2021 01:28:21 GMT expires: - '-1' pragma: @@ -315,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0ab6a16b-f089-48bf-be33-ca5bd6bff564 + - 8006e490-6569-407d-b18c-2ae6b201b5ae x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 201 message: Created @@ -335,9 +329,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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/737c8956-d295-43ce-8a7f-4488495d39ec?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1e551aea-5803-4085-9e5d-19d512f5c561?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -349,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:31 GMT + - Thu, 20 May 2021 01:28:22 GMT expires: - '-1' pragma: @@ -366,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 72e6f84e-b081-419f-a0f9-c0e49cefe37a + - 6bfb6d67-d72a-434c-b7b5-d06c23798d2c status: code: 200 message: OK @@ -384,16 +378,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"0f5d88e2-4179-4d4b-b846-2ff22b6be9bd\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"5517d319-1764-488c-9ae1-77d4a7adbca9\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"38a26eb5-aaaa-46a8-8fe1-d770bf20048e\",\r\n \"ipAddress\": - \"138.91.197.52\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"fd9cdbbd-ab93-4dd0-a77b-86992e059035\",\r\n \"ipAddress\": + \"104.40.13.243\",\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}" @@ -405,9 +399,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:31 GMT + - Thu, 20 May 2021 01:28:22 GMT etag: - - W/"0f5d88e2-4179-4d4b-b846-2ff22b6be9bd" + - W/"5517d319-1764-488c-9ae1-77d4a7adbca9" expires: - '-1' pragma: @@ -424,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7a82b38-dd53-4880-8f79-32814125eb07 + - e2d52a94-7da7-48c8-a5af-05b8f4a2fed7 status: code: 200 message: OK @@ -442,15 +436,12 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:23:56Z"},"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-05-20T01:27:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -459,7 +450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:33 GMT + - Thu, 20 May 2021 01:28:22 GMT expires: - '-1' pragma: @@ -492,15 +483,15 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"9e0beb36-5bfb-4b65-b14b-1e1721b67313\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"880ca4b8-ba15-40d1-9737-18d369ca50a5\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"aca80ae0-8363-4894-8848-d73459393759\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"924c38cd-186a-4ffe-afb5-a90c9ac9ec04\",\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 @@ -509,7 +500,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/b6b3715a-361f-42fb-968f-b78bdac691c6?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f97cf7de-f11f-43ca-92af-5902bb8476bf?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -517,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:38 GMT + - Thu, 20 May 2021 01:28:29 GMT expires: - '-1' pragma: @@ -530,9 +521,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9274fe0c-e0ba-43be-9eac-f1446ad21249 + - 7526675b-bb48-4482-b01d-010e3c503df3 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -550,9 +541,9 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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/b6b3715a-361f-42fb-968f-b78bdac691c6?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f97cf7de-f11f-43ca-92af-5902bb8476bf?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -564,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:39 GMT + - Thu, 20 May 2021 01:28:30 GMT expires: - '-1' pragma: @@ -581,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0cadeaa3-b2b4-48bf-aa13-b1ab278691b5 + - 94ff0b3d-8c66-4b7d-8719-d148dc3adb73 status: code: 200 message: OK @@ -599,16 +590,16 @@ interactions: ParameterSetName: - -g -n --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"44dd2e1a-ddae-40fb-8056-d7ec616628d9\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"99f1f225-0df0-4b1f-aacf-32b6c4eda553\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"aca80ae0-8363-4894-8848-d73459393759\",\r\n \"ipAddress\": - \"138.91.195.5\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"924c38cd-186a-4ffe-afb5-a90c9ac9ec04\",\r\n \"ipAddress\": + \"138.91.160.87\",\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}" @@ -616,13 +607,13 @@ interactions: cache-control: - no-cache content-length: - - '722' + - '723' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:39 GMT + - Thu, 20 May 2021 01:28:31 GMT etag: - - W/"44dd2e1a-ddae-40fb-8056-d7ec616628d9" + - W/"99f1f225-0df0-4b1f-aacf-32b6c4eda553" expires: - '-1' pragma: @@ -639,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5dd1b0b4-cf9d-4fec-ae90-8f006b298ccc + - e7273274-6540-428c-a709-d38649b155ec status: code: 200 message: OK @@ -657,15 +648,12 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:23:56Z"},"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-05-20T01:27:54Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -674,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:41 GMT + - Thu, 20 May 2021 01:28:31 GMT expires: - '-1' pragma: @@ -691,7 +679,8 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' headers: Accept: - application/json @@ -702,27 +691,27 @@ interactions: Connection: - keep-alive Content-Length: - - '217' + - '310' Content-Type: - application/json ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"deac6767-9aab-49eb-b858-037bdb4eba1b\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"8c220acc-6415-4872-8deb-9f5a2684f7f7\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c3938d63-b148-4c81-908d-c2ed32a1bcd9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"33d05f2c-f9a9-4cd7-9f29-9e821de0d2d2\",\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/\\\"deac6767-9aab-49eb-b858-037bdb4eba1b\\\"\",\r\n + \ \"etag\": \"W/\\\"8c220acc-6415-4872-8deb-9f5a2684f7f7\\\"\",\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\": @@ -733,7 +722,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/9acffbb5-4d38-4cc3-8643-f4358cecbc83?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/691b4759-6228-4373-b49e-042c6603a403?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -741,7 +730,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:48 GMT + - Thu, 20 May 2021 01:28:38 GMT expires: - '-1' pragma: @@ -754,7 +743,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 791b1a4a-4d5c-4a6f-bab6-8a923f643c70 + - f3240d91-96a9-4574-b92c-e028b1ee5833 x-ms-ratelimit-remaining-subscription-writes: - '1199' status: @@ -774,9 +763,9 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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/9acffbb5-4d38-4cc3-8643-f4358cecbc83?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/691b4759-6228-4373-b49e-042c6603a403?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -788,7 +777,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:51 GMT + - Thu, 20 May 2021 01:28:42 GMT expires: - '-1' pragma: @@ -805,7 +794,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8583499-7eaf-4d66-a5ec-7f4b076153d2 + - 8497cce9-dfcd-49ab-98cf-ba17d83c0715 status: code: 200 message: OK @@ -823,21 +812,21 @@ interactions: ParameterSetName: - -g -n --subnet-name --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"0828ad59-b182-4172-b300-1d2620a7930e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"19154410-9c4b-493b-89f0-fb6e01c8bf2c\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"c3938d63-b148-4c81-908d-c2ed32a1bcd9\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"33d05f2c-f9a9-4cd7-9f29-9e821de0d2d2\",\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/\\\"0828ad59-b182-4172-b300-1d2620a7930e\\\"\",\r\n + \ \"etag\": \"W/\\\"19154410-9c4b-493b-89f0-fb6e01c8bf2c\\\"\",\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\": @@ -852,9 +841,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:51 GMT + - Thu, 20 May 2021 01:28:42 GMT etag: - - W/"0828ad59-b182-4172-b300-1d2620a7930e" + - W/"19154410-9c4b-493b-89f0-fb6e01c8bf2c" expires: - '-1' pragma: @@ -871,7 +860,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - eb7d5712-13dc-4c08-917d-5731c85f6327 + - 2dd57b5a-cb1c-4a02-b70e-6f6ef919020d status: code: 200 message: OK @@ -889,13 +878,13 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"1460d453-456c-40ce-acdd-d03588db9971\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eb3cac72-915d-407c-9535-e4a010088cbb\\\"\",\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\": @@ -910,9 +899,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:53 GMT + - Thu, 20 May 2021 01:28:43 GMT etag: - - W/"1460d453-456c-40ce-acdd-d03588db9971" + - W/"eb3cac72-915d-407c-9535-e4a010088cbb" expires: - '-1' pragma: @@ -929,7 +918,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f5ead381-0c42-496f-88e0-56cb5555e253 + - b496c09c-280c-40d7-9ae8-26382c58d773 status: code: 200 message: OK @@ -957,19 +946,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"8b396e96-ebab-41ec-b92d-cce790a4ccb9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b6534bed-cec5-4126-91c3-c02d017561c0\\\"\",\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/\\\"8b396e96-ebab-41ec-b92d-cce790a4ccb9\\\"\",\r\n + \ \"etag\": \"W/\\\"b6534bed-cec5-4126-91c3-c02d017561c0\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -980,7 +969,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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -988,7 +977,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:24:54 GMT + - Thu, 20 May 2021 01:28:43 GMT expires: - '-1' pragma: @@ -1005,9 +994,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09adbbe0-679b-42b0-a3a6-ac92bfce94ac + - abcc92e4-3066-420b-91d0-344c632200a9 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -1025,9 +1014,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1039,7 +1028,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:25:04 GMT + - Thu, 20 May 2021 01:28:53 GMT expires: - '-1' pragma: @@ -1056,7 +1045,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 16bf4d25-696e-4f95-a7ee-6b5cd2107549 + - 84f74564-6d2d-4a41-9a58-6d0db63dce8d status: code: 200 message: OK @@ -1074,9 +1063,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1088,7 +1077,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:25:14 GMT + - Thu, 20 May 2021 01:29:04 GMT expires: - '-1' pragma: @@ -1105,7 +1094,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f0715295-f253-4ccc-82d8-8929109370ef + - 7c980636-0708-4ebf-ab92-6c2b021bfc23 status: code: 200 message: OK @@ -1123,9 +1112,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1137,7 +1126,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:25:34 GMT + - Thu, 20 May 2021 01:29:25 GMT expires: - '-1' pragma: @@ -1154,7 +1143,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ce7e7ca2-f147-43fa-8c39-91e416b77c6f + - b3fd5ab9-16ca-4a5b-8ae1-31a1519e27d6 status: code: 200 message: OK @@ -1172,9 +1161,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1186,7 +1175,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:26:14 GMT + - Thu, 20 May 2021 01:30:05 GMT expires: - '-1' pragma: @@ -1203,7 +1192,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - df14ace2-70d8-44a8-893a-0873b1f954eb + - b3958d2c-6ce5-49fc-9bbd-61e4477d1f1a status: code: 200 message: OK @@ -1221,9 +1210,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1235,7 +1224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:35 GMT + - Thu, 20 May 2021 01:31:25 GMT expires: - '-1' pragma: @@ -1252,7 +1241,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a89d42b-52d8-46f6-8c3e-19cded851d1c + - 2244a23c-c2e7-4424-a85c-63717d0298cc status: code: 200 message: OK @@ -1270,9 +1259,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/baca0e81-f3ff-428c-92e2-dcbb6924c105?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/2800f672-9bcc-4cc0-adf6-8d00eba04aed?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1284,7 +1273,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:16 GMT + - Thu, 20 May 2021 01:34:06 GMT expires: - '-1' pragma: @@ -1301,7 +1290,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 23db8c94-fdb1-42a7-b547-f88b67c7a888 + - 7027f8a2-a8f8-4793-a2b5-9339fe745acf status: code: 200 message: OK @@ -1319,19 +1308,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"619ec72e-bc47-43e5-88ca-23910e609042\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7a368feb-82ba-4268-98b1-7d12b68db0cf\\\"\",\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/\\\"619ec72e-bc47-43e5-88ca-23910e609042\\\"\",\r\n + \ \"etag\": \"W/\\\"7a368feb-82ba-4268-98b1-7d12b68db0cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1348,9 +1337,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:16 GMT + - Thu, 20 May 2021 01:34:07 GMT etag: - - W/"619ec72e-bc47-43e5-88ca-23910e609042" + - W/"7a368feb-82ba-4268-98b1-7d12b68db0cf" expires: - '-1' pragma: @@ -1367,7 +1356,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9f3150d3-4ed8-409a-9aba-f1535a385265 + - 18365399-7630-424e-a71a-b31f00b34d07 status: code: 200 message: OK @@ -1385,19 +1374,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"619ec72e-bc47-43e5-88ca-23910e609042\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7a368feb-82ba-4268-98b1-7d12b68db0cf\\\"\",\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/\\\"619ec72e-bc47-43e5-88ca-23910e609042\\\"\",\r\n + \ \"etag\": \"W/\\\"7a368feb-82ba-4268-98b1-7d12b68db0cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1414,9 +1403,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:17 GMT + - Thu, 20 May 2021 01:34:07 GMT etag: - - W/"619ec72e-bc47-43e5-88ca-23910e609042" + - W/"7a368feb-82ba-4268-98b1-7d12b68db0cf" expires: - '-1' pragma: @@ -1433,7 +1422,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 13d196d2-cba8-4a47-9775-8a99cbba90b2 + - c35819aa-4dc9-4392-b1b1-a1b10e471238 status: code: 200 message: OK @@ -1462,19 +1451,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"361d8ccc-7d0c-4a97-8827-e47ee888556c\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"f8e333ca-4f31-4927-8e3e-8060c50f1bdd\\\"\",\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/\\\"361d8ccc-7d0c-4a97-8827-e47ee888556c\\\"\",\r\n + \ \"etag\": \"W/\\\"f8e333ca-4f31-4927-8e3e-8060c50f1bdd\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1482,7 +1471,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/\\\"361d8ccc-7d0c-4a97-8827-e47ee888556c\\\"\",\r\n + \ \"etag\": \"W/\\\"f8e333ca-4f31-4927-8e3e-8060c50f1bdd\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1492,7 +1481,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/39cd1d47-38d4-4306-8558-734a28e77b8c?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe4c1b7e-e8cc-43da-b07d-1ed9d62a7e72?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1500,7 +1489,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:18 GMT + - Thu, 20 May 2021 01:34:07 GMT expires: - '-1' pragma: @@ -1517,9 +1506,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5fb0da91-3083-4105-998f-00304cffa986 + - f5daee7e-0acd-4b0c-a645-e831a008fba3 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' status: code: 200 message: OK @@ -1537,9 +1526,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/39cd1d47-38d4-4306-8558-734a28e77b8c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe4c1b7e-e8cc-43da-b07d-1ed9d62a7e72?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1551,7 +1540,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:28 GMT + - Thu, 20 May 2021 01:34:17 GMT expires: - '-1' pragma: @@ -1568,7 +1557,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bedba595-c6b4-4c3f-a728-0cd1cc598acb + - 5f284a56-a64b-4274-94a3-327f59fd7892 status: code: 200 message: OK @@ -1586,9 +1575,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/39cd1d47-38d4-4306-8558-734a28e77b8c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe4c1b7e-e8cc-43da-b07d-1ed9d62a7e72?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1600,7 +1589,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:39 GMT + - Thu, 20 May 2021 01:34:28 GMT expires: - '-1' pragma: @@ -1617,7 +1606,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b91a4002-583e-4b4b-b912-9d858abf7ee2 + - 369708c1-723a-4e2e-8fbf-8a0a80b1e0ce status: code: 200 message: OK @@ -1635,9 +1624,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/39cd1d47-38d4-4306-8558-734a28e77b8c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe4c1b7e-e8cc-43da-b07d-1ed9d62a7e72?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1649,7 +1638,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:00 GMT + - Thu, 20 May 2021 01:34:48 GMT expires: - '-1' pragma: @@ -1666,7 +1655,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f552d2b9-db4d-4575-be3e-ed06c1d56867 + - fcc2b93a-5bc8-4685-8482-8159dffbb679 status: code: 200 message: OK @@ -1684,9 +1673,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/39cd1d47-38d4-4306-8558-734a28e77b8c?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe4c1b7e-e8cc-43da-b07d-1ed9d62a7e72?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1698,7 +1687,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:40 GMT + - Thu, 20 May 2021 01:35:28 GMT expires: - '-1' pragma: @@ -1715,7 +1704,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b0c1d2db-cd96-4627-8a35-a09b233e458a + - b484e8e1-9b2f-4e6c-bea5-5302147abb82 status: code: 200 message: OK @@ -1733,19 +1722,19 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1753,7 +1742,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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1769,9 +1758,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:40 GMT + - Thu, 20 May 2021 01:35:28 GMT etag: - - W/"f2f2ca54-1012-4da9-8690-216bc6cd36f2" + - W/"5d486d5e-2ab2-40b3-ada0-8edf7d327c25" expires: - '-1' pragma: @@ -1788,7 +1777,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de125cef-cf7e-4f10-abff-46da09926b68 + - c0cebbbe-7478-4b59-8c43-e8494e25eca0 status: code: 200 message: OK @@ -1806,19 +1795,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1826,7 +1815,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/\\\"f2f2ca54-1012-4da9-8690-216bc6cd36f2\\\"\",\r\n + \ \"etag\": \"W/\\\"5d486d5e-2ab2-40b3-ada0-8edf7d327c25\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1842,9 +1831,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:42 GMT + - Thu, 20 May 2021 01:35:29 GMT etag: - - W/"f2f2ca54-1012-4da9-8690-216bc6cd36f2" + - W/"5d486d5e-2ab2-40b3-ada0-8edf7d327c25" expires: - '-1' pragma: @@ -1861,7 +1850,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9757a229-a9e7-4d51-a1b7-cab408e881dd + - e14d05fd-3bbe-4920-89ed-608965104ec3 status: code: 200 message: OK @@ -1889,19 +1878,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"864f5c2d-2e8d-4861-b3d1-1d039fcee46d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"b431c15b-1242-4e3c-8595-289798d085a3\\\"\",\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/\\\"864f5c2d-2e8d-4861-b3d1-1d039fcee46d\\\"\",\r\n + \ \"etag\": \"W/\\\"b431c15b-1242-4e3c-8595-289798d085a3\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -1912,7 +1901,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/c354804c-75ea-468a-a8dd-39a33c17769e?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dce62497-8c99-4c78-a931-bc85c46dafcd?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1920,7 +1909,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:43 GMT + - Thu, 20 May 2021 01:35:30 GMT expires: - '-1' pragma: @@ -1937,9 +1926,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 96d9145c-329e-4bf5-aaa4-fd21112afc83 + - 78f54dfa-7e7d-46d8-a9c8-0fb78d25e1ca x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1197' status: code: 200 message: OK @@ -1957,9 +1946,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/c354804c-75ea-468a-a8dd-39a33c17769e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dce62497-8c99-4c78-a931-bc85c46dafcd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1971,7 +1960,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:53 GMT + - Thu, 20 May 2021 01:35:40 GMT expires: - '-1' pragma: @@ -1988,7 +1977,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 75b591c2-8787-440f-b622-b2fac3e5a7d9 + - ef3161c5-ac8d-4eae-92ce-d19e644ef518 status: code: 200 message: OK @@ -2006,9 +1995,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/c354804c-75ea-468a-a8dd-39a33c17769e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dce62497-8c99-4c78-a931-bc85c46dafcd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2020,7 +2009,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:03 GMT + - Thu, 20 May 2021 01:35:50 GMT expires: - '-1' pragma: @@ -2037,7 +2026,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e8e68c14-df5c-4064-96c6-226d1d9cb1a4 + - f164c688-5593-412a-86de-9cd657e70577 status: code: 200 message: OK @@ -2055,9 +2044,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/c354804c-75ea-468a-a8dd-39a33c17769e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dce62497-8c99-4c78-a931-bc85c46dafcd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2069,7 +2058,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:24 GMT + - Thu, 20 May 2021 01:36:10 GMT expires: - '-1' pragma: @@ -2086,7 +2075,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac69dd53-956f-48fe-a4a5-1f5a53002028 + - 93d1efb1-37a7-4174-90d6-b34eec2afbea status: code: 200 message: OK @@ -2104,9 +2093,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/c354804c-75ea-468a-a8dd-39a33c17769e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/dce62497-8c99-4c78-a931-bc85c46dafcd?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2118,7 +2107,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:04 GMT + - Thu, 20 May 2021 01:36:51 GMT expires: - '-1' pragma: @@ -2135,7 +2124,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35029cd1-edf3-4e00-95d2-7a9b09309356 + - a37269c6-70d2-40df-84c6-eeb838b1c739 status: code: 200 message: OK @@ -2153,19 +2142,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"226b5051-683f-4249-b797-f280472693cd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"90f12a48-0cee-4114-aed0-fc04c647a666\\\"\",\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/\\\"226b5051-683f-4249-b797-f280472693cd\\\"\",\r\n + \ \"etag\": \"W/\\\"90f12a48-0cee-4114-aed0-fc04c647a666\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2182,9 +2171,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:05 GMT + - Thu, 20 May 2021 01:36:52 GMT etag: - - W/"226b5051-683f-4249-b797-f280472693cd" + - W/"90f12a48-0cee-4114-aed0-fc04c647a666" expires: - '-1' pragma: @@ -2201,7 +2190,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - bcc39177-b8e0-4dc4-b1a5-f6ed930c3877 + - 15e1dbcb-1058-4206-8b36-e79010de2e13 status: code: 200 message: OK @@ -2219,19 +2208,19 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"226b5051-683f-4249-b797-f280472693cd\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"90f12a48-0cee-4114-aed0-fc04c647a666\\\"\",\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/\\\"226b5051-683f-4249-b797-f280472693cd\\\"\",\r\n + \ \"etag\": \"W/\\\"90f12a48-0cee-4114-aed0-fc04c647a666\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2248,9 +2237,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:06 GMT + - Thu, 20 May 2021 01:36:52 GMT etag: - - W/"226b5051-683f-4249-b797-f280472693cd" + - W/"90f12a48-0cee-4114-aed0-fc04c647a666" expires: - '-1' pragma: @@ -2267,7 +2256,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6634e500-2825-456c-8fdb-cc06f5e473ac + - 15a704f3-34e3-4405-afa8-cecd5bc8acca status: code: 200 message: OK @@ -2292,13 +2281,13 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"282db61f-8301-4aba-94b1-55fa58d06aea\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"3bb69707-3508-4cba-8f39-1506bdb9fd67\\\"\",\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\": @@ -2307,7 +2296,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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2315,7 +2304,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:07 GMT + - Thu, 20 May 2021 01:36:53 GMT expires: - '-1' pragma: @@ -2332,9 +2321,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f480db43-bfb1-400b-bbd3-77442a0fceb9 + - e655a467-6687-4215-b0fb-95e98a93ed33 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1193' status: code: 200 message: OK @@ -2352,9 +2341,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2366,7 +2355,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:18 GMT + - Thu, 20 May 2021 01:37:03 GMT expires: - '-1' pragma: @@ -2383,7 +2372,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f7153b7f-b3c1-417b-b5a7-d153bcada944 + - b2c29d45-d69a-44c0-8a7a-cda636fdd899 status: code: 200 message: OK @@ -2401,9 +2390,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2415,7 +2404,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:29 GMT + - Thu, 20 May 2021 01:37:13 GMT expires: - '-1' pragma: @@ -2432,7 +2421,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cf874fe7-d0fd-4670-8eb8-77f2be8932fe + - 7e8b5eb7-ecca-4f3a-bfda-2369f7791f4f status: code: 200 message: OK @@ -2450,9 +2439,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2464,7 +2453,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:49 GMT + - Thu, 20 May 2021 01:37:33 GMT expires: - '-1' pragma: @@ -2481,7 +2470,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5669b7fb-7748-4556-b219-f6dc56abeab2 + - a52f41c9-01bf-4760-bfdc-ee1e76e86409 status: code: 200 message: OK @@ -2499,9 +2488,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2513,7 +2502,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:34:29 GMT + - Thu, 20 May 2021 01:38:14 GMT expires: - '-1' pragma: @@ -2530,7 +2519,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c703dd83-5a97-49ee-b314-457916ea97de + - 579f34ba-b313-4a15-bce4-af95c7c73b9a status: code: 200 message: OK @@ -2548,9 +2537,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2562,7 +2551,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:35:49 GMT + - Thu, 20 May 2021 01:39:34 GMT expires: - '-1' pragma: @@ -2579,7 +2568,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4b177ae0-7ef5-4f5e-b503-eb8c9270cd92 + - 5b848ae9-9383-451f-b8ad-d612c6f9fa3c status: code: 200 message: OK @@ -2597,9 +2586,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2611,7 +2600,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:38:30 GMT + - Thu, 20 May 2021 01:42:15 GMT expires: - '-1' pragma: @@ -2628,7 +2617,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9ae9e167-54c3-4a9c-aeac-ce9f4e8e64b2 + - bbd4557d-4e6b-4abd-8f99-512896898546 status: code: 200 message: OK @@ -2646,9 +2635,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2660,7 +2649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:40:10 GMT + - Thu, 20 May 2021 01:43:55 GMT expires: - '-1' pragma: @@ -2677,7 +2666,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae8b7abe-a8f0-44d1-9d1b-ac42757f961b + - 26afb2e2-3e29-4164-96fa-66e330e9f68d status: code: 200 message: OK @@ -2695,9 +2684,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2709,7 +2698,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:41:51 GMT + - Thu, 20 May 2021 01:45:35 GMT expires: - '-1' pragma: @@ -2726,7 +2715,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ef037320-5854-4da6-800c-bf6fc6428aaa + - e0a6ac92-c8a4-493b-a85f-db19f1e44b11 status: code: 200 message: OK @@ -2744,9 +2733,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2758,7 +2747,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:43:31 GMT + - Thu, 20 May 2021 01:47:15 GMT expires: - '-1' pragma: @@ -2775,7 +2764,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8c55ae9d-649b-4ce7-bfc1-e9996cdb7cb1 + - 005c5e36-fbf8-41bc-833f-2c1a5de05dc9 status: code: 200 message: OK @@ -2793,9 +2782,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2807,7 +2796,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:45:11 GMT + - Thu, 20 May 2021 01:48:56 GMT expires: - '-1' pragma: @@ -2824,7 +2813,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5bec1c96-2d09-4c16-89c3-0159ecd935bd + - 60c4578c-df82-4fbe-ab04-e41ffb040ef1 status: code: 200 message: OK @@ -2842,9 +2831,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2856,7 +2845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:46:51 GMT + - Thu, 20 May 2021 01:50:36 GMT expires: - '-1' pragma: @@ -2873,7 +2862,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cd8d6c64-ed8a-42d2-9685-2c8631b79a10 + - 97aa5ceb-20a9-42e5-ad0f-53c7731807fd status: code: 200 message: OK @@ -2891,9 +2880,9 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/fdf4cadb-b557-4702-8805-88bee2bc4604?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/c2c0c409-45e0-4bcb-9b19-69c8ed134794?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2905,7 +2894,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:48:32 GMT + - Thu, 20 May 2021 01:52:16 GMT expires: - '-1' pragma: @@ -2922,7 +2911,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a53444c6-58c1-436e-ba65-622b5fdc30e5 + - 152e8233-9c08-46fe-9767-411e104dbd54 status: code: 200 message: OK @@ -2940,13 +2929,13 @@ interactions: ParameterSetName: - -g -n -f User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"76d2b736-6569-4180-968b-dd84d800c519\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"9b689c5a-cea6-4f2b-8f46-62cb3adc0bbb\\\"\",\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\": @@ -2961,9 +2950,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:48:32 GMT + - Thu, 20 May 2021 01:52:16 GMT etag: - - W/"76d2b736-6569-4180-968b-dd84d800c519" + - W/"9b689c5a-cea6-4f2b-8f46-62cb3adc0bbb" expires: - '-1' pragma: @@ -2980,7 +2969,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6d90f40d-c6af-4de6-bad9-228867a6bfb9 + - 7f900a4a-c9f5-4d0b-beaf-b1c9757d9865 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 4ea5949da4b..0cc27ea437c 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,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:09 GMT + - Wed, 19 May 2021 11:25:48 GMT expires: - '-1' pragma: @@ -58,20 +55,17 @@ interactions: Content-Length: - '66' Content-Type: - - application/json; charset=utf-8 + - application/json 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 - accept-language: - - en-US + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"ebd9059d-d5c0-4b1e-8415-34b2c0c406c1\\\"\",\r\n \"type\": + 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/\\\"33538b6f-cda1-40f1-a08f-4eb322ae3161\\\"\",\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 +76,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/3d9e49db-5687-4844-9275-607416021ba0?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -90,7 +84,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:14 GMT + - Wed, 19 May 2021 11:25:53 GMT expires: - '-1' pragma: @@ -103,9 +97,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4adf4108-c6b0-4e11-a745-a306b669080f + - 1fb17930-3dcb-4918-b8b7-5582dcb78b5a x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1187' status: code: 201 message: Created @@ -113,7 +107,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -123,10 +117,9 @@ 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 + - AZURECLI/2.23.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/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/3d9e49db-5687-4844-9275-607416021ba0?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -138,7 +131,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:25 GMT + - Wed, 19 May 2021 11:26:04 GMT expires: - '-1' pragma: @@ -155,7 +148,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6728d3b4-7d86-4606-a069-f0586e093739 + - cce61a60-59d8-462d-9d21-53db94eee26c status: code: 200 message: OK @@ -163,7 +156,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -173,14 +166,13 @@ 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"35ee5a5c-ddb0-4033-8453-6e94b4fa879a\\\"\",\r\n \"type\": + 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/\\\"65eb80ef-1a1e-40b8-aca1-ad8ac9cccbee\\\"\",\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 +187,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:25 GMT + - Wed, 19 May 2021 11:26:04 GMT etag: - - W/"35ee5a5c-ddb0-4033-8453-6e94b4fa879a" + - W/"65eb80ef-1a1e-40b8-aca1-ad8ac9cccbee" expires: - '-1' pragma: @@ -214,7 +206,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25ed22e4-9086-4e10-a57f-c60e6407179a + - 03acb567-f7cf-49d5-bcba-319f61c678cc status: code: 200 message: OK @@ -232,15 +224,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -249,7 +238,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:26 GMT + - Wed, 19 May 2021 11:26:06 GMT expires: - '-1' pragma: @@ -282,15 +271,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"bebd8227-8373-4821-8c07-e73350f6e5ce\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"71f29f98-c2bd-457b-923b-d74c47df086a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"eacc1e66-ed7d-48e9-baad-01cd6624fcb6\",\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 +288,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/de37773b-ca5a-4e1c-9dfb-3add1586cbb6?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -307,7 +296,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:31 GMT + - Wed, 19 May 2021 11:26:11 GMT expires: - '-1' pragma: @@ -320,9 +309,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ae6d4855-b881-4756-bfa3-f66568a12f82 + - 09ddb549-dff0-413c-afcd-00d80a9d13be x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1192' status: code: 201 message: Created @@ -340,9 +329,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.23.0 azsdk-python-azure-mgmt-network/19.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/de37773b-ca5a-4e1c-9dfb-3add1586cbb6?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -354,7 +343,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:32 GMT + - Wed, 19 May 2021 11:26:13 GMT expires: - '-1' pragma: @@ -371,7 +360,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1fde6379-8257-4c74-88d2-ee517e8f9c3c + - 4f4032a1-f514-4f18-b61e-fe73ffc237e0 status: code: 200 message: OK @@ -389,16 +378,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"cc603a28-4798-4443-924a-d270bbf1197c\\\"\",\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\": \"eacc1e66-ed7d-48e9-baad-01cd6624fcb6\",\r\n \"ipAddress\": + \"137.135.9.73\",\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 +395,13 @@ interactions: cache-control: - no-cache content-length: - - '722' + - '720' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:33 GMT + - Wed, 19 May 2021 11:26:13 GMT etag: - - W/"c7d56cc5-1b11-4869-942d-3a4e6228b92b" + - W/"cc603a28-4798-4443-924a-d270bbf1197c" expires: - '-1' pragma: @@ -429,7 +418,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 20e5235c-acfe-47a0-9ce4-0c5a655860cb + - 2fb1bede-d451-422f-baad-d4af327823f0 status: code: 200 message: OK @@ -447,15 +436,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -464,7 +450,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:34 GMT + - Wed, 19 May 2021 11:26:14 GMT expires: - '-1' pragma: @@ -497,15 +483,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"8f355908-ff16-4b6c-820f-728edcd323a0\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"2eeeef40-a47a-4d6c-b11c-e69834771cf3\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"06441896-09a8-404d-ae0d-f8a33f81d034\",\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 +500,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/679c8158-5634-47f0-8658-74e0d82c2a6a?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -522,7 +508,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:40 GMT + - Wed, 19 May 2021 11:26:17 GMT expires: - '-1' pragma: @@ -535,9 +521,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d8d4a88e-b9b9-4666-bdbe-c410763c9738 + - 8ab5a144-d716-45f2-a40a-31ec691b9ef6 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1186' status: code: 201 message: Created @@ -555,9 +541,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.23.0 azsdk-python-azure-mgmt-network/19.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/679c8158-5634-47f0-8658-74e0d82c2a6a?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -569,7 +555,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:41 GMT + - Wed, 19 May 2021 11:26:18 GMT expires: - '-1' pragma: @@ -586,7 +572,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ecac361-caf6-48aa-a38e-2d1ea0c5be3e + - dba8a92f-6048-4ff5-962f-393b7859ec6c status: code: 200 message: OK @@ -604,16 +590,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"c2a72571-8e1a-4fa4-9b5f-ebf9f655eeb5\\\"\",\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\": \"06441896-09a8-404d-ae0d-f8a33f81d034\",\r\n \"ipAddress\": + \"65.52.117.143\",\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 +607,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 + - Wed, 19 May 2021 11:26:19 GMT etag: - - W/"e02a9038-a686-44c5-adec-b39ee6db91ae" + - W/"c2a72571-8e1a-4fa4-9b5f-ebf9f655eeb5" expires: - '-1' pragma: @@ -644,7 +630,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a6f62b7-57a2-4d1c-ab75-cbda1b7c0b39 + - e3883ab3-d0fe-48d1-9361-1d9d2d41f4e4 status: code: 200 message: OK @@ -662,15 +648,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -679,7 +662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:42 GMT + - Wed, 19 May 2021 11:26:19 GMT expires: - '-1' pragma: @@ -712,15 +695,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"22bb0c7e-3052-4dbc-a240-fc94451ca94e\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"49c570de-a353-4b93-8f48-0a003a38c79a\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"e655980e-58e6-4933-9270-afe398a71fca\",\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 +712,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/112a249b-1c30-4f05-ac81-218d41c28ab7?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -737,7 +720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:48 GMT + - Wed, 19 May 2021 11:26:25 GMT expires: - '-1' pragma: @@ -750,9 +733,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1be54460-f805-4067-9cc4-16aa6ac534b8 + - e48fbeda-6ad3-414a-b042-24b5647478e7 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' status: code: 201 message: Created @@ -770,9 +753,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.23.0 azsdk-python-azure-mgmt-network/19.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/112a249b-1c30-4f05-ac81-218d41c28ab7?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -784,7 +767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:49 GMT + - Wed, 19 May 2021 11:26:27 GMT expires: - '-1' pragma: @@ -801,7 +784,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0845f6fb-2a5e-4d66-bf84-8e8618057f8a + - 7293a312-1371-49ea-a42b-e464b51f3e10 status: code: 200 message: OK @@ -819,16 +802,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"d7ed9838-4867-4ed5-9751-dd6e884cbcb4\\\"\",\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\": \"e655980e-58e6-4933-9270-afe398a71fca\",\r\n \"ipAddress\": + \"168.62.198.182\",\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 +819,13 @@ interactions: cache-control: - no-cache content-length: - - '723' + - '724' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:50 GMT + - Wed, 19 May 2021 11:26:27 GMT etag: - - W/"e2603d49-c594-47c2-bdf5-7ac8c6157572" + - W/"d7ed9838-4867-4ed5-9751-dd6e884cbcb4" expires: - '-1' pragma: @@ -859,7 +842,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 62597dab-3d6d-4b0b-9da6-9a678147fbfd + - 70d94d75-5847-4ad9-a005-32c212bd9d51 status: code: 200 message: OK @@ -877,15 +860,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -894,7 +874,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:51 GMT + - Wed, 19 May 2021 11:26:27 GMT expires: - '-1' pragma: @@ -927,15 +907,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"993b4429-c086-4502-8708-6017c66911ec\\\"\",\r\n \"location\": \"westus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"c532738f-798f-4056-b56d-61fbc3f23baa\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"254da330-8d94-43a0-a428-ccfde6954f7f\",\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 +924,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/c29617ec-0fcb-4596-9bd0-25d0c1beef81?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -952,7 +932,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:56 GMT + - Wed, 19 May 2021 11:26:34 GMT expires: - '-1' pragma: @@ -965,9 +945,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d75ebbe3-d5f2-48aa-87e2-873bf461f4e9 + - ef036b69-f4a6-4f99-89d0-9bbaa8c10a6a x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1192' status: code: 201 message: Created @@ -985,9 +965,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.23.0 azsdk-python-azure-mgmt-network/19.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/c29617ec-0fcb-4596-9bd0-25d0c1beef81?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -999,7 +979,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:57 GMT + - Wed, 19 May 2021 11:26:35 GMT expires: - '-1' pragma: @@ -1016,7 +996,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cfbf2391-c391-4582-b9ce-ea8fe5057242 + - 5e66db07-0d4c-4b7c-b406-39086acac595 status: code: 200 message: OK @@ -1034,16 +1014,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.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"9aa6eb52-0917-4807-a68b-7f4d268c8934\\\"\",\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\": \"254da330-8d94-43a0-a428-ccfde6954f7f\",\r\n \"ipAddress\": + \"104.42.97.214\",\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 +1031,13 @@ interactions: cache-control: - no-cache content-length: - - '721' + - '723' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:57 GMT + - Wed, 19 May 2021 11:26:35 GMT etag: - - W/"6704831c-673b-4969-b36a-7e9b4deee8a8" + - W/"9aa6eb52-0917-4807-a68b-7f4d268c8934" expires: - '-1' pragma: @@ -1074,7 +1054,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 845e59e3-3609-4cb8-824c-ee07593caccf + - b79fc6ac-5aa9-4e93-ab41-eaef7a39bca4 status: code: 200 message: OK @@ -1092,15 +1072,12 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?api-version=2020-10-01 + 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/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/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-05-19T11:25:44Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -1109,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:10:58 GMT + - Wed, 19 May 2021 11:26:35 GMT expires: - '-1' pragma: @@ -1126,7 +1103,8 @@ interactions: - request: body: '{"location": "westus", "tags": {}, "properties": {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "dhcpOptions": {}, "subnets": [{"name": "AzureFirewallSubnet", - "properties": {"addressPrefix": "10.0.0.0/24"}}]}}' + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' headers: Accept: - application/json @@ -1137,46 +1115,46 @@ interactions: Connection: - keep-alive Content-Length: - - '217' + - '310' 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) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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\": + 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/\\\"bf09a32a-3f85-4477-a57d-a0f5e1ca09a1\\\"\",\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\": + \ \"resourceGuid\": \"e615da75-5bfd-4048-ac6b-e4ee24fce9f0\",\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 + \ \"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/\\\"bf09a32a-3f85-4477-a57d-a0f5e1ca09a1\\\"\",\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/4008b015-5fcd-4468-b19a-409070b741b8?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8d7c4c64-ab34-49d5-97ad-af0f9d898a07?api-version=2021-02-01 cache-control: - no-cache content-length: - - '1464' + - '1430' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:05 GMT + - Wed, 19 May 2021 11:26:42 GMT expires: - '-1' pragma: @@ -1189,9 +1167,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2629b6be-fc98-4600-b31c-5934e90a919c + - fab78b09-9128-4369-8030-b11e7d9506a9 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 201 message: Created @@ -1209,9 +1187,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.23.0 azsdk-python-azure-mgmt-network/19.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 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/8d7c4c64-ab34-49d5-97ad-af0f9d898a07?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1223,7 +1201,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:08 GMT + - Wed, 19 May 2021 11:26:45 GMT expires: - '-1' pragma: @@ -1240,7 +1218,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c55d2cf1-fcad-4303-b53b-85f4d0b33372 + - 73317fc0-0ec6-4ec6-be67-9e7474865081 status: code: 200 message: OK @@ -1258,38 +1236,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.23.0 azsdk-python-azure-mgmt-network/19.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/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/virtualNetworks/myvnet?api-version=2021-02-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\": + 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/\\\"4c6c9dfd-6dbe-4ad4-835d-edfdfa63239d\\\"\",\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\": + \ \"resourceGuid\": \"e615da75-5bfd-4048-ac6b-e4ee24fce9f0\",\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 + \ \"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/\\\"4c6c9dfd-6dbe-4ad4-835d-edfdfa63239d\\\"\",\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: - - Tue, 19 Jan 2021 09:11:08 GMT + - Wed, 19 May 2021 11:26:46 GMT etag: - - W/"c198abb1-0525-4798-bd4f-4e73b0168832" + - W/"4c6c9dfd-6dbe-4ad4-835d-edfdfa63239d" expires: - '-1' pragma: @@ -1306,7 +1284,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49589be9-7292-4d5a-8960-924e5f4f74fa + - e1aa0290-40d8-4c89-a438-65d859823c93 status: code: 200 message: OK @@ -1318,97 +1296,112 @@ 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 - accept-language: - - en-US + - AZURECLI/2.23.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?api-version=2020-10-01 + 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: '{"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: "{\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/\\\"65eb80ef-1a1e-40b8-aca1-ad8ac9cccbee\\\"\",\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: - - '428' + - '691' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:09 GMT + - Wed, 19 May 2021 11:26:46 GMT + etag: + - W/"65eb80ef-1a1e-40b8-aca1-ad8ac9cccbee" 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: + - f126452a-77dc-4981-adf9-aa869a4499cd 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/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1", + "location": "westus", "properties": {"applicationRuleCollections": [], "natRuleCollections": + [], "networkRuleCollections": [], "ipConfigurations": [{"name": "myipconfig3", + "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"}}}], + "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 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) + - AZURECLI/2.23.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/virtualNetworks/myvnet2?api-version=2020-07-01 + 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\": \"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 \"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/\\\"eae36b46-172b-4dbc-a283-1ce02aa8fd89\\\"\",\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/\\\"eae36b46-172b-4dbc-a283-1ce02aa8fd89\\\"\",\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-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 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?api-version=2020-07-01 cache-control: - no-cache content-length: - - '1487' + - '1816' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:11 GMT + - Wed, 19 May 2021 11:26:46 GMT expires: - '-1' pragma: @@ -1418,15 +1411,19 @@ 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: - - 65e40be3-1a91-423d-97a6-3eae71c3cdb4 + - ae44adc6-8b0c-4ae6-b235-93ac0b18c05e x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1189' status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1435,27 +1432,27 @@ 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: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.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/b943ef37-64ab-443f-9ee2-7479258c395a?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?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: - - Tue, 19 Jan 2021 09:11:15 GMT + - Wed, 19 May 2021 11:26:58 GMT expires: - '-1' pragma: @@ -1472,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5339cb48-d085-4563-8fc7-909ff2d70092 + - 76711989-4e0e-4143-b59d-6665c24185e5 status: code: 200 message: OK @@ -1484,44 +1481,27 @@ 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: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.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/virtualNetworks/myvnet2?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?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}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1489' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:15 GMT - etag: - - W/"30da4b8a-5dd6-4175-a87e-ca32a39057bf" + - Wed, 19 May 2021 11:27:08 GMT expires: - '-1' pragma: @@ -1538,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8eb6554e-9305-43dd-a7bd-38b17ade9f89 + - c7cdc3d1-3a99-4836-b29c-c719649bd3b8 status: code: 200 message: OK @@ -1546,101 +1526,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' 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 - accept-language: - - en-US + - AZURECLI/2.23.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?api-version=2020-10-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?api-version=2020-07-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}" + 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/westus/operations/6134b09d-1af0-47a3-8efb-e95e4941ba27?api-version=2020-07-01 cache-control: - no-cache content-length: - - '1487' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:21 GMT + - Wed, 19 May 2021 11:27:28 GMT expires: - '-1' pragma: @@ -1650,15 +1560,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: - - bd6ee1fa-d7ed-41b3-bada-c2359ba3588d - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - bae8ed2a-513f-4142-a09a-f228cc81ab82 status: - code: 201 - message: Created + code: 200 + message: OK - request: body: null headers: @@ -1667,27 +1579,27 @@ 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: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.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/6134b09d-1af0-47a3-8efb-e95e4941ba27?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?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: - - Tue, 19 Jan 2021 09:11:24 GMT + - Wed, 19 May 2021 11:28:08 GMT expires: - '-1' pragma: @@ -1704,7 +1616,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8649c887-f02e-4bad-ad17-c32a8a05e92e + - f78f0588-dd1d-4229-b386-37051b16845b status: code: 200 message: OK @@ -1716,44 +1628,27 @@ 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: - - AZURECLI/2.17.1 azsdk-python-azure-mgmt-network/17.0.0 Python/3.7.3 (Windows-10-10.0.19041-SP0) + - AZURECLI/2.23.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/virtualNetworks/myvnet4?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?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}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1489' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:25 GMT - etag: - - W/"e74be2e6-5b32-4374-aaa7-c5d666efbc31" + - Wed, 19 May 2021 11:29:28 GMT expires: - '-1' pragma: @@ -1770,7 +1665,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1735b7df-28bb-49fa-a5a3-405fe819bde2 + - 75f37a32-01e6-4d97-a5aa-43ae0d3e87d7 status: code: 200 message: OK @@ -1778,7 +1673,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1788,33 +1683,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 - accept-language: - - en-US + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/da377f3d-e2f8-499a-8b11-46157a1ad048?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}" + string: "{\r\n \"status\": \"Succeeded\"\r\n}" headers: cache-control: - no-cache content-length: - - '691' + - '29' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:25 GMT - etag: - - W/"35ee5a5c-ddb0-4033-8453-6e94b4fa879a" + - Wed, 19 May 2021 11:32:10 GMT expires: - '-1' pragma: @@ -1831,69 +1714,56 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5f530aff-580b-4316-9726-1a84e80626e7 + - 493cb632-627a-428b-9039-5f2a8e1abf62 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": {}}}' + body: null 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 + - AZURECLI/2.23.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/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\": + 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/\\\"c1133526-7f1c-48d9-97fa-30b0c023f955\\\"\",\r\n \"type\": \"Microsoft.Network/azureFirewalls\",\r\n \"location\": \"westus\",\r\n \"properties\": - {\r\n \"provisioningState\": \"Updating\",\r\n \"sku\": {\r\n \"name\": + {\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/\\\"27ba4408-1189-45e4-8684-fde77c8bf3cf\\\"\",\r\n + [\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/\\\"c1133526-7f1c-48d9-97fa-30b0c023f955\\\"\",\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 + \ \"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: - 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' + - '1860' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:26 GMT + - Wed, 19 May 2021 11:32:10 GMT + etag: + - W/"c1133526-7f1c-48d9-97fa-30b0c023f955" expires: - '-1' pragma: @@ -1910,9 +1780,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4d41b151-2674-4ae1-a974-f297e47d9f12 - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - d8646056-f1fe-4a2b-b10e-388815f5a811 status: code: 200 message: OK @@ -1924,28 +1792,44 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - network firewall ip-config create + - network firewall ip-config delete Connection: - keep-alive ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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 + - AZURECLI/2.23.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/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 + 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 \"status\": \"InProgress\"\r\n}" + 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/\\\"c1133526-7f1c-48d9-97fa-30b0c023f955\\\"\",\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/\\\"c1133526-7f1c-48d9-97fa-30b0c023f955\\\"\",\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: - - '30' + - '1860' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:36 GMT + - Wed, 19 May 2021 11:32:12 GMT + etag: + - W/"c1133526-7f1c-48d9-97fa-30b0c023f955" expires: - '-1' pragma: @@ -1962,40 +1846,55 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbfe8ef9-5735-4ca2-bf30-e3d0300cc0b1 + - d2960400-f3aa-4438-8502-fe38a419fc28 status: code: 200 message: OK - request: - body: null + 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 create + - network firewall ip-config delete Connection: - keep-alive + Content-Length: + - '433' + Content-Type: + - application/json ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 + - AZURECLI/2.23.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/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/test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n + \ \"etag\": \"W/\\\"5d8d7f93-fdcd-4af3-ac60-b53d0111b3dd\\\"\",\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/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 cache-control: - no-cache content-length: - - '30' + - '690' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:11:47 GMT + - Wed, 19 May 2021 11:32:12 GMT expires: - '-1' pragma: @@ -2012,7 +1911,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 20806447-0954-4b67-957c-f671f7f6323e + - f6fa6376-3773-4572-a2c6-965da9c9feef + x-ms-ratelimit-remaining-subscription-writes: + - '1190' status: code: 200 message: OK @@ -2020,20 +1921,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall ip-config create + - network firewall ip-config delete Connection: - keep-alive ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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 + - AZURECLI/2.23.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/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2045,7 +1945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:08 GMT + - Wed, 19 May 2021 11:32:22 GMT expires: - '-1' pragma: @@ -2062,7 +1962,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b89d38fe-18d2-4500-bcb7-1c437b05b8d4 + - e1ae3e48-0fcc-4f1e-9e3e-e9c8175dbbc8 status: code: 200 message: OK @@ -2070,20 +1970,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall ip-config create + - network firewall ip-config delete Connection: - keep-alive ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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 + - AZURECLI/2.23.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/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2095,7 +1994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:12:48 GMT + - Wed, 19 May 2021 11:32:33 GMT expires: - '-1' pragma: @@ -2112,7 +2011,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ae8812c-e477-4b97-b3f5-2cbb4ba6863b + - 2b913ddc-6c41-411f-9437-0953b4be5b9b status: code: 200 message: OK @@ -2120,20 +2019,19 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall ip-config create + - network firewall ip-config delete Connection: - keep-alive ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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 + - AZURECLI/2.23.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/cfedaea5-bd70-46eb-8435-f4259eaf12bb?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2145,57 +2043,7 @@ interactions: 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 + - Wed, 19 May 2021 11:32:53 GMT expires: - '-1' pragma: @@ -2212,7 +2060,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ab9c3151-dcb8-40a3-a3d3-9fe186f194b7 + - 8be9f720-f4c7-483d-af4b-e73a681c5c70 status: code: 200 message: OK @@ -2220,49 +2068,31 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - network firewall ip-config create + - network firewall ip-config delete Connection: - keep-alive ParameterSetName: - - -g -n -f --public-ip-address --vnet-name + - -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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?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}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1860' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:16:48 GMT - etag: - - W/"4209abb5-b0ad-44a9-a859-e4eb085b075d" + - Wed, 19 May 2021 11:33:33 GMT expires: - '-1' pragma: @@ -2279,7 +2109,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c06b2da2-763e-42ec-bdc2-f891097aa259 + - 5e908ec1-b37c-4a33-99e2-68339c26b74d status: code: 200 message: OK @@ -2287,7 +2117,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2297,41 +2127,21 @@ interactions: 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?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}" + string: "{\r\n \"status\": \"InProgress\"\r\n}" headers: cache-control: - no-cache content-length: - - '1860' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:16:49 GMT - etag: - - W/"4209abb5-b0ad-44a9-a859-e4eb085b075d" + - Wed, 19 May 2021 11:34:54 GMT expires: - '-1' pragma: @@ -2348,58 +2158,39 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6831a519-4d34-45d6-9aaf-f5e152a8e57a + - 6ff35d76-b05b-4843-82b6-5007a1ce8939 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": {}}}' + body: null 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 + - AZURECLI/2.23.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/89317779-6670-4e13-adf0-aeabbda7be17?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}" + string: "{\r\n \"status\": \"InProgress\"\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' + - '30' content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:16:50 GMT + - Wed, 19 May 2021 11:37:34 GMT expires: - '-1' pragma: @@ -2416,9 +2207,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee952a9d-929a-4292-9797-7281000b952b - x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - c83a129f-9ae9-4eef-ba1d-1ba89b01c1fe status: code: 200 message: OK @@ -2426,7 +2215,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2436,10 +2225,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2451,7 +2239,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:17:00 GMT + - Wed, 19 May 2021 11:39:14 GMT expires: - '-1' pragma: @@ -2468,7 +2256,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a85846e9-ec9c-4650-ae7f-8db8574de396 + - a0803df4-1334-41dc-a2a6-9f5e1b8ba4f5 status: code: 200 message: OK @@ -2476,7 +2264,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2486,10 +2274,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2501,7 +2288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:17:11 GMT + - Wed, 19 May 2021 11:40:54 GMT expires: - '-1' pragma: @@ -2518,7 +2305,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e27c62b5-cc96-48d0-805d-efc18c8ddb4c + - 89567e2c-4dd0-4908-a44a-1485a39b027e status: code: 200 message: OK @@ -2526,7 +2313,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2536,10 +2323,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2551,7 +2337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:17:31 GMT + - Wed, 19 May 2021 11:42:36 GMT expires: - '-1' pragma: @@ -2568,7 +2354,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 027475f4-fbef-4d86-8ba2-c6b441a0bc13 + - fe0afc42-aead-454b-81b7-951cc5bffec2 status: code: 200 message: OK @@ -2576,7 +2362,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2586,10 +2372,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2601,7 +2386,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:18:11 GMT + - Wed, 19 May 2021 11:44:16 GMT expires: - '-1' pragma: @@ -2618,7 +2403,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4aa995c9-c291-455d-81f6-93519c724180 + - 8256acfa-cac3-4171-aeae-33dbdd9fce2f status: code: 200 message: OK @@ -2626,7 +2411,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2636,10 +2421,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2651,7 +2435,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:19:32 GMT + - Wed, 19 May 2021 11:45:56 GMT expires: - '-1' pragma: @@ -2668,7 +2452,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b8047c35-aa63-408a-98db-3674a8bf8ac3 + - bcabc342-746f-40e5-a23e-984f4d34d90d status: code: 200 message: OK @@ -2676,7 +2460,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2686,10 +2470,9 @@ interactions: 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 + - AZURECLI/2.23.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/6fd57cb6-99d0-47c2-bd3c-fae29d8b2513?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/89317779-6670-4e13-adf0-aeabbda7be17?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2701,7 +2484,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:12 GMT + - Wed, 19 May 2021 11:47:36 GMT expires: - '-1' pragma: @@ -2718,7 +2501,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a2018af2-1e61-4520-b8a2-fd6540e8dcde + - ea2afab2-0264-4c46-af03-a2493c26d8e8 status: code: 200 message: OK @@ -2726,7 +2509,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2736,14 +2519,13 @@ interactions: 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": + 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/\\\"2fd531fc-f58e-4dfc-95be-fb11d6e8f103\\\"\",\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\": @@ -2758,9 +2540,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:13 GMT + - Wed, 19 May 2021 11:47:36 GMT etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" + - W/"2fd531fc-f58e-4dfc-95be-fb11d6e8f103" expires: - '-1' pragma: @@ -2777,7 +2559,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 151d7896-bbfa-45b4-a2ef-c6ecf9ff8a7c + - 7ced043b-e2e7-4e20-90ff-992a7ff7839a status: code: 200 message: OK @@ -2795,16 +2577,13 @@ interactions: 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": + 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/\\\"2fd531fc-f58e-4dfc-95be-fb11d6e8f103\\\"\",\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\": @@ -2819,9 +2598,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:13 GMT + - Wed, 19 May 2021 11:47:37 GMT etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" + - W/"2fd531fc-f58e-4dfc-95be-fb11d6e8f103" expires: - '-1' pragma: @@ -2838,12 +2617,12 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5ab0ed1a-929b-4b67-a614-96fa7d5689b7 + - d32f21a3-24b7-499a-b31a-3d24223f6ed2 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", + 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": {}}}' @@ -2859,20 +2638,17 @@ interactions: Content-Length: - '433' Content-Type: - - application/json; charset=utf-8 + - application/json 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": + 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/\\\"2fd531fc-f58e-4dfc-95be-fb11d6e8f103\\\"\",\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\": @@ -2881,7 +2657,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/290f15e9-1896-4804-abba-d0b746214022?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79668a67-0a87-425d-8f81-25c36fcd5265?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2889,7 +2665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:13 GMT + - Wed, 19 May 2021 11:47:37 GMT expires: - '-1' pragma: @@ -2906,9 +2682,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dc546342-661a-4c04-966c-cc965dd8c92a + - 29a72ea8-6158-4277-8380-37600476a8ac x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1195' status: code: 200 message: OK @@ -2916,7 +2692,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2926,10 +2702,9 @@ interactions: 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 + - AZURECLI/2.23.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/290f15e9-1896-4804-abba-d0b746214022?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/79668a67-0a87-425d-8f81-25c36fcd5265?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2941,7 +2716,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:44 GMT + - Wed, 19 May 2021 11:48:08 GMT expires: - '-1' pragma: @@ -2958,7 +2733,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 49ac563e-5126-489a-bcd0-7e8c89613e55 + - 969d7dfd-b252-4647-b4a7-43f8afd596a3 status: code: 200 message: OK @@ -2966,7 +2741,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -2976,14 +2751,13 @@ interactions: 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": + 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/\\\"2fd531fc-f58e-4dfc-95be-fb11d6e8f103\\\"\",\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\": @@ -2998,9 +2772,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:44 GMT + - Wed, 19 May 2021 11:48:08 GMT etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" + - W/"2fd531fc-f58e-4dfc-95be-fb11d6e8f103" expires: - '-1' pragma: @@ -3017,7 +2791,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 25108785-a081-42b1-92bd-796ec48a0acf + - 7823528e-c921-40f8-bd0f-b8959a3de506 status: code: 200 message: OK @@ -3035,16 +2809,13 @@ interactions: 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 + - AZURECLI/2.23.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/azureFirewalls/af1?api-version=2020-07-01 + 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/cli_test_azure_firewall_management_ip_config000001/providers/Microsoft.Network/azureFirewalls/af1\",\r\n - \ \"etag\": \"W/\\\"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0\\\"\",\r\n \"type\": + 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/\\\"2fd531fc-f58e-4dfc-95be-fb11d6e8f103\\\"\",\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\": @@ -3059,9 +2830,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 19 Jan 2021 09:22:45 GMT + - Wed, 19 May 2021 11:48:09 GMT etag: - - W/"cc09c273-d1eb-4c12-9c3d-effc9bd0ebb0" + - W/"2fd531fc-f58e-4dfc-95be-fb11d6e8f103" expires: - '-1' pragma: @@ -3078,7 +2849,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b168438-90f6-471d-82b4-09d2ac7c68f9 + - 57194bca-9753-4095-9deb-3f99ecf377ee status: code: 200 message: OK 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_with_firewall_policy.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy.yaml index f59a8b0802d..66077a8b8eb 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,12 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:27:14Z"},"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-05-21T03:07:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -30,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:18 GMT + - Fri, 21 May 2021 03:07:08 GMT expires: - '-1' pragma: @@ -58,20 +55,17 @@ interactions: Content-Length: - '23' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -n -g --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.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/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/\\\"6e236000-4d39-47a7-a9d8-6dc316450560\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2a23b5ce-7705-48d8-a922-abcf0154f30e\\\"\",\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 +74,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/9a810047-e771-473a-bdc7-4623d5b708c4?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/186a5321-885b-46e0-a28c-e732c53e41a1?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -88,7 +82,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:25 GMT + - Fri, 21 May 2021 03:07:13 GMT expires: - '-1' pragma: @@ -101,9 +95,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - dcb5afd1-10be-46a7-932f-cbf18017f964 + - 9a212dff-c066-4308-bb98-ed3542999335 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -111,7 +105,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -121,10 +115,9 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/9a810047-e771-473a-bdc7-4623d5b708c4?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/186a5321-885b-46e0-a28c-e732c53e41a1?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -136,7 +129,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:36 GMT + - Fri, 21 May 2021 03:07:23 GMT expires: - '-1' pragma: @@ -153,7 +146,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3f328eb4-eaa5-4cd2-b11d-d974e37c1e45 + - 4139532d-47e1-4640-8cc8-f642d8bede39 status: code: 200 message: OK @@ -161,7 +154,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -171,14 +164,13 @@ interactions: ParameterSetName: - -n -g --type User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/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/\\\"f4de2f71-30b3-4904-9137-3aac9e00f32d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2e09c227-bb8e-4d3e-baad-f2474dd6f4c3\\\"\",\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 +183,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:37 GMT + - Fri, 21 May 2021 03:07:23 GMT etag: - - W/"f4de2f71-30b3-4904-9137-3aac9e00f32d" + - W/"2e09c227-bb8e-4d3e-baad-f2474dd6f4c3" expires: - '-1' pragma: @@ -210,7 +202,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5dbbed06-06d5-4034-bc18-5594de242ec5 + - 09994c57-a3f0-4fa9-b2f7-e7e1e4fd110c status: code: 200 message: OK @@ -229,20 +221,17 @@ interactions: Content-Length: - '310' Content-Type: - - application/json; charset=utf-8 + - application/json ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.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/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/\\\"c37dc86f-e088-484c-96c3-609374677f42\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"621bf41f-f2ff-4ea6-8b35-593e96edce1c\\\"\",\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 +243,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 cache-control: - no-cache content-length: @@ -262,7 +251,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:42 GMT + - Fri, 21 May 2021 03:07:30 GMT expires: - '-1' pragma: @@ -275,9 +264,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1478b99-b6a8-4ee2-bc44-dd53dda4f3bd + - 26f83d7c-38df-4c89-8721-d4751f6c4475 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -285,7 +274,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -295,10 +284,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -310,7 +298,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:27:55 GMT + - Fri, 21 May 2021 03:07:41 GMT expires: - '-1' pragma: @@ -327,7 +315,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 35cfbbdc-d52a-4d9d-a0f0-b5525a38fd5e + - 42601b91-1531-43b5-bec1-651f5338cb6c status: code: 200 message: OK @@ -335,7 +323,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -345,10 +333,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -360,7 +347,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:28:06 GMT + - Fri, 21 May 2021 03:07:51 GMT expires: - '-1' pragma: @@ -377,7 +364,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3d19ffd9-0056-403f-ae86-e4c7f341ff70 + - 7a555d9d-a996-4734-831d-8c2d59dd703f status: code: 200 message: OK @@ -385,7 +372,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -395,10 +382,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -410,7 +396,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:28:27 GMT + - Fri, 21 May 2021 03:08:11 GMT expires: - '-1' pragma: @@ -427,7 +413,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 97c115c8-e21c-4128-8e05-a306f97e9d04 + - 903ceb2b-7e17-4fee-a475-644988b6e927 status: code: 200 message: OK @@ -435,7 +421,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -445,10 +431,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -460,7 +445,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:28:48 GMT + - Fri, 21 May 2021 03:08:31 GMT expires: - '-1' pragma: @@ -477,7 +462,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 333c2cdd-f104-441d-bee1-0da844c96b36 + - 2d6fc961-da9e-4b61-8a76-ef807f142ffe status: code: 200 message: OK @@ -485,7 +470,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -495,10 +480,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -510,7 +494,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:29:29 GMT + - Fri, 21 May 2021 03:09:11 GMT expires: - '-1' pragma: @@ -527,7 +511,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6aced613-4908-4879-8392-0387019a0c2f + - 9da0f194-174e-439d-82f3-d7e181ece344 status: code: 200 message: OK @@ -535,7 +519,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -545,10 +529,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -560,7 +543,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:30:10 GMT + - Fri, 21 May 2021 03:09:52 GMT expires: - '-1' pragma: @@ -577,7 +560,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 78b8106a-4d11-4b1b-ab89-4eff586bf114 + - 8778c8b5-bbe8-4475-82bc-cf87453dd58f status: code: 200 message: OK @@ -585,7 +568,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -595,10 +578,9 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/d2690ebb-8a8c-48ea-ae82-4a24d8698a8d?api-version=2020-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/7547183d-e2c6-4ad3-bb46-da7376354a03?api-version=2020-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -610,7 +592,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:31 GMT + - Fri, 21 May 2021 03:11:12 GMT expires: - '-1' pragma: @@ -627,7 +609,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b85d1af9-b3dd-4d41-a781-b23902979d8d + - 7b497614-97b8-447e-915f-13c53cc3c53b status: code: 200 message: OK @@ -635,7 +617,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -645,14 +627,13 @@ interactions: ParameterSetName: - -g -n --vwan --address-prefix -l --sku User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-network/10.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 + - AZURECLI/2.23.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/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/\\\"d72223d4-5661-4de4-b95c-71292822e897\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"e8d51890-06ad-4ccb-9757-322928bbec71\\\"\",\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 +649,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:32 GMT + - Fri, 21 May 2021 03:11:12 GMT expires: - '-1' pragma: @@ -685,7 +666,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d73df052-dc4c-4f8a-b820-609a2f6266ca + - 5ee38eee-16f7-4c21-9493-5d752b7c4339 status: code: 200 message: OK @@ -707,7 +688,7 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/firewallPolicies/myclipolicy?api-version=2020-07-01 response: @@ -717,10 +698,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\": \"357490be-3ce0-413d-a9be-44a0974d2b1d\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"b5b86eff-0983-47bc-b130-d2c986caa65f\",\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/5f5e087d-0022-4f03-a3ab-dee28196f632?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/b08a7ecc-6ad9-4f29-b491-0e35a9e4fe4d?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -728,7 +709,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:40 GMT + - Fri, 21 May 2021 03:11:20 GMT expires: - '-1' pragma: @@ -740,7 +721,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1196' status: code: 201 message: Created @@ -758,9 +739,9 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/nfvOperations/5f5e087d-0022-4f03-a3ab-dee28196f632?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/b08a7ecc-6ad9-4f29-b491-0e35a9e4fe4d?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -772,7 +753,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:51 GMT + - Fri, 21 May 2021 03:11:31 GMT expires: - '-1' pragma: @@ -804,7 +785,7 @@ interactions: ParameterSetName: - -g -n -l User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/firewallPolicies/myclipolicy?api-version=2020-07-01 response: @@ -814,7 +795,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\": \"357490be-3ce0-413d-a9be-44a0974d2b1d\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"b5b86eff-0983-47bc-b130-d2c986caa65f\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -823,9 +804,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:52 GMT + - Fri, 21 May 2021 03:11:31 GMT etag: - - '"357490be-3ce0-413d-a9be-44a0974d2b1d"' + - '"b5b86eff-0983-47bc-b130-d2c986caa65f"' expires: - '-1' pragma: @@ -857,15 +838,12 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - accept-language: - - en-US + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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?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-04-21T04:27:14Z"},"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-05-21T03:07:05Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -874,7 +852,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:31:54 GMT + - Fri, 21 May 2021 03:11:32 GMT expires: - '-1' pragma: @@ -909,13 +887,13 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"78627825-2bd9-4355-87b1-07fa3584eeec\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7b59319f-5030-4fd9-bca4-9d30f8bcd492\\\"\",\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 @@ -929,7 +907,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -937,7 +915,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:02 GMT + - Fri, 21 May 2021 03:11:38 GMT expires: - '-1' pragma: @@ -950,7 +928,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cc9f5bac-13c7-40a6-8b12-2b0ef44c571a + - 40d87445-281a-4260-a996-9c14f53d947d x-ms-ratelimit-remaining-subscription-writes: - '1196' status: @@ -970,9 +948,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -984,7 +962,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:12 GMT + - Fri, 21 May 2021 03:11:48 GMT expires: - '-1' pragma: @@ -1001,7 +979,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 09371d31-b40c-49c2-973a-f48743a86e85 + - 56c4d351-d739-4148-8f26-e5d768c9160d status: code: 200 message: OK @@ -1019,9 +997,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1033,7 +1011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:23 GMT + - Fri, 21 May 2021 03:11:59 GMT expires: - '-1' pragma: @@ -1050,7 +1028,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9299247b-68c3-47e8-9b29-09d983a469a5 + - 276bd0a3-f08b-4c49-8333-ecfd806a2093 status: code: 200 message: OK @@ -1068,9 +1046,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1082,7 +1060,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:32:43 GMT + - Fri, 21 May 2021 03:12:20 GMT expires: - '-1' pragma: @@ -1099,7 +1077,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6fea268e-7b99-491a-ae26-54e2a70a9dc9 + - 30f6b21d-78d5-4fa6-b31f-899f7c208c60 status: code: 200 message: OK @@ -1117,9 +1095,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1131,7 +1109,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:03 GMT + - Fri, 21 May 2021 03:12:40 GMT expires: - '-1' pragma: @@ -1148,7 +1126,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b409e940-9509-4598-abeb-90265b0a42fc + - efb8d7a3-4613-4423-a072-87a0b5cfc51b status: code: 200 message: OK @@ -1166,9 +1144,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1180,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:33:44 GMT + - Fri, 21 May 2021 03:13:20 GMT expires: - '-1' pragma: @@ -1197,7 +1175,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a2a7be8-3264-4ebd-99f2-ff4c1392448f + - 66efad4d-3f82-475f-a46b-c94a14482c30 status: code: 200 message: OK @@ -1215,9 +1193,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1229,7 +1207,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:34:24 GMT + - Fri, 21 May 2021 03:14:01 GMT expires: - '-1' pragma: @@ -1246,7 +1224,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0af60d32-794a-46b8-add8-10625f494827 + - 1c152e4a-4f44-41f7-8b25-c81aec2261a5 status: code: 200 message: OK @@ -1264,9 +1242,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1278,7 +1256,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:35:44 GMT + - Fri, 21 May 2021 03:15:21 GMT expires: - '-1' pragma: @@ -1295,7 +1273,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7b80b1bf-bf7c-4d7f-9d83-2728689c5165 + - 69c6de25-0ada-49ff-833f-abb3bfe520e7 status: code: 200 message: OK @@ -1313,9 +1291,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1327,7 +1305,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:38:24 GMT + - Fri, 21 May 2021 03:18:02 GMT expires: - '-1' pragma: @@ -1344,7 +1322,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c7a9e8a6-a9f4-44c3-b38a-112b9090ed41 + - e2cceb97-d8a2-4adb-ba28-9b4a5dbe11c5 status: code: 200 message: OK @@ -1362,9 +1340,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1376,7 +1354,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:40:05 GMT + - Fri, 21 May 2021 03:19:44 GMT expires: - '-1' pragma: @@ -1393,7 +1371,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 76c9edde-4ada-42ea-9838-27d53352b12e + - e014b3e6-795a-4205-ad71-01311f1dadff status: code: 200 message: OK @@ -1411,9 +1389,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1425,7 +1403,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:41:45 GMT + - Fri, 21 May 2021 03:21:23 GMT expires: - '-1' pragma: @@ -1442,7 +1420,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 14776ce2-b6db-4f4f-9241-77993f87127c + - 86b4a21f-fa0d-4e67-a418-423aec0d6dee status: code: 200 message: OK @@ -1460,9 +1438,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1474,7 +1452,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:43:25 GMT + - Fri, 21 May 2021 03:23:04 GMT expires: - '-1' pragma: @@ -1491,7 +1469,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3798426f-8a70-42a4-9649-554e2a94dcda + - 9eea4e29-3cff-4f00-8599-efcbaf41b361 status: code: 200 message: OK @@ -1509,9 +1487,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1523,7 +1501,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:45:05 GMT + - Fri, 21 May 2021 03:24:45 GMT expires: - '-1' pragma: @@ -1540,7 +1518,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a86a3281-4170-444a-938b-c483557f475f + - 9f4a8c1f-3cfe-4241-930f-af53c58d947a status: code: 200 message: OK @@ -1558,9 +1536,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1572,7 +1550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:46:46 GMT + - Fri, 21 May 2021 03:26:25 GMT expires: - '-1' pragma: @@ -1589,7 +1567,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - cf27dedc-6275-4c05-8a83-275ed4667f51 + - 62d0aff6-f69f-401a-9543-517b47f5aea1 status: code: 200 message: OK @@ -1607,9 +1585,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1621,7 +1599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:48:26 GMT + - Fri, 21 May 2021 03:28:05 GMT expires: - '-1' pragma: @@ -1638,7 +1616,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0a153b02-f7af-4037-97d9-a118f7b608d2 + - 372cee3b-87eb-46f9-b763-dda364fa4f13 status: code: 200 message: OK @@ -1656,9 +1634,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1670,7 +1648,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:50:06 GMT + - Fri, 21 May 2021 03:29:45 GMT expires: - '-1' pragma: @@ -1687,7 +1665,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ee7a7a52-16c8-4afa-8f32-36a0c85a339b + - f323e4f5-d0d1-42b8-a974-5eb00570d1df status: code: 200 message: OK @@ -1705,9 +1683,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1719,7 +1697,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:51:47 GMT + - Fri, 21 May 2021 03:31:26 GMT expires: - '-1' pragma: @@ -1736,7 +1714,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 682a3761-52be-44b0-b2f1-c27cd8a64a74 + - e5d39ee6-99d6-4abe-8422-b78c232140fc status: code: 200 message: OK @@ -1754,9 +1732,9 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/eb3208bd-9bf3-4380-b063-c5801996ebb0?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/c5af1c6a-fa58-484e-8e52-fdef9221d2fb?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1768,7 +1746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:28 GMT + - Fri, 21 May 2021 03:33:07 GMT expires: - '-1' pragma: @@ -1785,7 +1763,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8b01d355-32ab-420d-be38-e2949f329c2a + - 7a6aaad4-0c5b-48e4-ab3c-379c84e9ad44 status: code: 200 message: OK @@ -1803,13 +1781,13 @@ interactions: ParameterSetName: - -g -n --count --sku --vhub --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"a7f55598-86a6-43c1-97ca-b198fdbf20c8\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"732cdf1a-0995-4354-ab86-9733dde7f3e4\\\"\",\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 @@ -1817,20 +1795,20 @@ interactions: \"/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.132\",\r\n \ \"publicIPs\": {\r\n \"addresses\": [\r\n {\r\n \"address\": - \"40.64.80.73\"\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 + \"20.69.132.51\"\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: cache-control: - no-cache content-length: - - '1236' + - '1237' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:28 GMT + - Fri, 21 May 2021 03:33:07 GMT etag: - - W/"a7f55598-86a6-43c1-97ca-b198fdbf20c8" + - W/"732cdf1a-0995-4354-ab86-9733dde7f3e4" expires: - '-1' pragma: @@ -1847,7 +1825,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5540a4b9-e2e5-4e72-a464-a4d63bf88275 + - 670ce801-2165-4b02-9034-035f3e41907a status: code: 200 message: OK @@ -1870,13 +1848,13 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"c5305afa-4929-4269-ac3d-21eb8355a332\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"d7e6ce2d-33a8-4322-a970-4d09fc24d5f2\\\"\",\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 @@ -1889,7 +1867,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ca550232-d070-459e-ae57-eecdcc140a8e?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5c8afd2-5139-4e50-8c5e-610cf8550455?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -1897,7 +1875,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:37 GMT + - Fri, 21 May 2021 03:33:15 GMT expires: - '-1' pragma: @@ -1910,7 +1888,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ffefc7bb-5310-4377-9e07-17e47a991ccd + - c1829153-b727-4b8b-8a72-91a2a89e690b x-ms-ratelimit-remaining-subscription-writes: - '1198' status: @@ -1930,9 +1908,9 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/ca550232-d070-459e-ae57-eecdcc140a8e?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/e5c8afd2-5139-4e50-8c5e-610cf8550455?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1944,7 +1922,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:48 GMT + - Fri, 21 May 2021 03:33:25 GMT expires: - '-1' pragma: @@ -1961,7 +1939,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b55cc6c-c744-4fc8-845a-a405987f14f9 + - 415c5943-0f31-4990-869e-b30452eef834 status: code: 200 message: OK @@ -1979,13 +1957,13 @@ interactions: ParameterSetName: - -g -n -l --firewall-policy User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"3f81de75-f0a0-492d-99a8-cf32bd9b261d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"befd132f-c43b-40ec-b3a5-0d30518f2136\\\"\",\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 @@ -2002,9 +1980,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:48 GMT + - Fri, 21 May 2021 03:33:25 GMT etag: - - W/"3f81de75-f0a0-492d-99a8-cf32bd9b261d" + - W/"befd132f-c43b-40ec-b3a5-0d30518f2136" expires: - '-1' pragma: @@ -2021,7 +1999,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 80b9c61f-d788-40d1-a349-7dc185373a29 + - 1c6df969-d7cd-446f-9a0a-9090878b63f6 status: code: 200 message: OK @@ -2044,15 +2022,15 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"a20d5dd6-09b8-4a14-92dd-3a343c41815f\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"6dd3b078-efae-449d-9a11-294e64dd536c\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"366bdc49-12c2-402e-9dc9-9bf5cd371a17\",\r\n \"publicIPAddressVersion\": + \ \"resourceGuid\": \"a360c445-f3c9-49a1-be45-165843c6a78b\",\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 @@ -2061,7 +2039,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/776bfdc7-fc93-49ea-85f5-b66286500bcb?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ed34922a-d187-4b3c-b012-16ea315c1ae0?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -2069,7 +2047,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:57 GMT + - Fri, 21 May 2021 03:33:31 GMT expires: - '-1' pragma: @@ -2082,9 +2060,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - df6ee844-3ae3-45f6-9f82-362ee39926f7 + - f907a130-b232-47f4-bfa6-2f4a3658b047 x-ms-ratelimit-remaining-subscription-writes: - - '1193' + - '1198' status: code: 201 message: Created @@ -2102,9 +2080,9 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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/776bfdc7-fc93-49ea-85f5-b66286500bcb?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/ed34922a-d187-4b3c-b012-16ea315c1ae0?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2116,7 +2094,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:58 GMT + - Fri, 21 May 2021 03:33:33 GMT expires: - '-1' pragma: @@ -2133,7 +2111,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b89d4440-679f-4b4c-b231-aa5adb18fb6a + - 22f64290-93b4-4acc-8244-d54023c21580 status: code: 200 message: OK @@ -2151,16 +2129,16 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"33fffc95-5f95-4dee-97d1-ceaa568205a8\\\"\",\r\n \"location\": + \ \"etag\": \"W/\\\"ee0d1815-1ade-4a79-a977-c49621b33ee1\\\"\",\r\n \"location\": \"westus2\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"366bdc49-12c2-402e-9dc9-9bf5cd371a17\",\r\n \"ipAddress\": - \"52.250.119.106\",\r\n \"publicIPAddressVersion\": \"IPv4\",\r\n \"publicIPAllocationMethod\": + \ \"resourceGuid\": \"a360c445-f3c9-49a1-be45-165843c6a78b\",\r\n \"ipAddress\": + \"52.191.184.43\",\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}" @@ -2168,13 +2146,13 @@ interactions: cache-control: - no-cache content-length: - - '723' + - '722' content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:53:58 GMT + - Fri, 21 May 2021 03:33:33 GMT etag: - - W/"33fffc95-5f95-4dee-97d1-ceaa568205a8" + - W/"ee0d1815-1ade-4a79-a977-c49621b33ee1" expires: - '-1' pragma: @@ -2191,14 +2169,15 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7ac843bb-7925-436b-ba41-919bc0870e00 + - 4de8da72-1270-4947-936a-c6188a76a791 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"}}]}}' + "properties": {"addressPrefix": "10.0.0.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}]}}' headers: Accept: - application/json @@ -2209,27 +2188,27 @@ interactions: Connection: - keep-alive Content-Length: - - '218' + - '311' Content-Type: - application/json ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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 + 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=2021-02-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/\\\"96af5c15-16a9-44f1-a086-18d84e980c90\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"eebc58a5-f153-4732-b493-ab99f4a23be0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"00583083-2489-4580-9859-0a00f1e9da25\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a6eddcf2-d2c7-47ec-a222-9288a6de5420\",\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/\\\"96af5c15-16a9-44f1-a086-18d84e980c90\\\"\",\r\n + \ \"etag\": \"W/\\\"eebc58a5-f153-4732-b493-ab99f4a23be0\\\"\",\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\": @@ -2240,7 +2219,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/19ae5053-9637-4486-83ea-29f2e2dd956e?api-version=2020-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83393839-998b-4b48-afbe-9b0257d71296?api-version=2021-02-01 cache-control: - no-cache content-length: @@ -2248,7 +2227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:05 GMT + - Fri, 21 May 2021 03:33:39 GMT expires: - '-1' pragma: @@ -2261,9 +2240,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f6d56cb3-820d-4a0c-bf40-f899ecff56d6 + - cfa78ffa-ef8f-4d5d-b234-b8501478fc27 x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1197' status: code: 201 message: Created @@ -2281,9 +2260,9 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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/19ae5053-9637-4486-83ea-29f2e2dd956e?api-version=2020-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/83393839-998b-4b48-afbe-9b0257d71296?api-version=2021-02-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2295,7 +2274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:08 GMT + - Fri, 21 May 2021 03:33:43 GMT expires: - '-1' pragma: @@ -2312,7 +2291,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c9cbcfca-bdad-403c-99e8-b2e2c5131792 + - 990cdcb1-5aa9-48da-b720-804ccc43426f status: code: 200 message: OK @@ -2330,21 +2309,21 @@ interactions: ParameterSetName: - -g -n --subnet-name -l --address-prefixes --subnet-prefixes User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-network/19.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-11-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=2021-02-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/\\\"b5c69c63-2589-4ea5-8684-9945ea1c20b9\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"94005954-aeaf-4a02-8335-9765bd93e2a5\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"westus2\",\r\n \ \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"00583083-2489-4580-9859-0a00f1e9da25\",\r\n \"addressSpace\": + \ \"resourceGuid\": \"a6eddcf2-d2c7-47ec-a222-9288a6de5420\",\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/\\\"b5c69c63-2589-4ea5-8684-9945ea1c20b9\\\"\",\r\n + \ \"etag\": \"W/\\\"94005954-aeaf-4a02-8335-9765bd93e2a5\\\"\",\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\": @@ -2359,9 +2338,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:09 GMT + - Fri, 21 May 2021 03:33:44 GMT etag: - - W/"b5c69c63-2589-4ea5-8684-9945ea1c20b9" + - W/"94005954-aeaf-4a02-8335-9765bd93e2a5" expires: - '-1' pragma: @@ -2378,7 +2357,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b92265f1-6c90-43bf-9d78-3afae0a0a6c8 + - 0a8cfe0c-22d9-43a5-8438-a6df9a9aa594 status: code: 200 message: OK @@ -2396,13 +2375,13 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"3f81de75-f0a0-492d-99a8-cf32bd9b261d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"befd132f-c43b-40ec-b3a5-0d30518f2136\\\"\",\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 @@ -2419,9 +2398,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:11 GMT + - Fri, 21 May 2021 03:33:43 GMT etag: - - W/"3f81de75-f0a0-492d-99a8-cf32bd9b261d" + - W/"befd132f-c43b-40ec-b3a5-0d30518f2136" expires: - '-1' pragma: @@ -2438,7 +2417,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - de7694cc-a610-4206-b797-3deb0f2b6a32 + - fc878f9d-afc3-4b24-a3c1-5aae62a1f58b status: code: 200 message: OK @@ -2466,20 +2445,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"3088fa0b-3a40-4cde-a108-fa89ff7e4408\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"6cfea964-c43b-4897-b15e-d0dbc28c3739\\\"\",\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/\\\"3088fa0b-3a40-4cde-a108-fa89ff7e4408\\\"\",\r\n + \ \"etag\": \"W/\\\"6cfea964-c43b-4897-b15e-d0dbc28c3739\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -2491,7 +2470,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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2499,7 +2478,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:12 GMT + - Fri, 21 May 2021 03:33:44 GMT expires: - '-1' pragma: @@ -2516,9 +2495,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 9821e230-d962-4863-abae-8582083a2acf + - 55de8198-b215-4ec4-8cfb-864514801a71 x-ms-ratelimit-remaining-subscription-writes: - - '1195' + - '1197' status: code: 200 message: OK @@ -2536,9 +2515,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2550,7 +2529,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:22 GMT + - Fri, 21 May 2021 03:33:55 GMT expires: - '-1' pragma: @@ -2567,7 +2546,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1954d1d8-e894-4764-a4b9-33237cb76e80 + - 41e2cef2-f6f2-476a-886b-37ceda0e81b1 status: code: 200 message: OK @@ -2585,9 +2564,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2599,7 +2578,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:33 GMT + - Fri, 21 May 2021 03:34:05 GMT expires: - '-1' pragma: @@ -2616,7 +2595,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 60d2a8cf-8992-444f-97f2-59bdcad409f8 + - e5f934dc-81ef-4a56-aed8-b80cee058d62 status: code: 200 message: OK @@ -2634,9 +2613,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2648,7 +2627,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:54:54 GMT + - Fri, 21 May 2021 03:34:25 GMT expires: - '-1' pragma: @@ -2665,7 +2644,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7a4a6611-bf61-478c-9ba0-938c96c04292 + - 035542a7-13bd-472c-97f8-b159fc2d625c status: code: 200 message: OK @@ -2683,9 +2662,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2697,7 +2676,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:55:34 GMT + - Fri, 21 May 2021 03:35:05 GMT expires: - '-1' pragma: @@ -2714,7 +2693,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 8405438a-3699-42f6-8a4b-a4c367f8ff8e + - 9f603118-f901-4366-9b56-ae7006602d13 status: code: 200 message: OK @@ -2732,9 +2711,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -2746,7 +2725,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:56:54 GMT + - Fri, 21 May 2021 03:36:26 GMT expires: - '-1' pragma: @@ -2763,7 +2742,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1675893c-9947-4588-a643-35a9a39b994c + - 99d2806f-74a4-4f87-ba20-043b44dd365b status: code: 200 message: OK @@ -2781,9 +2760,9 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/8f5a2947-6d15-4191-b822-8dc8a8e83532?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/operations/4fbec701-1461-470e-a779-c408d2d3ff10?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2795,7 +2774,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:59:35 GMT + - Fri, 21 May 2021 03:39:06 GMT expires: - '-1' pragma: @@ -2812,7 +2791,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 7e09443e-103a-4285-9768-6481ff65a645 + - ad5e61a8-bc42-4bed-baa3-62ae50d93950 status: code: 200 message: OK @@ -2830,20 +2809,20 @@ interactions: ParameterSetName: - -g -n -f --public-ip-address --vnet-name User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/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/\\\"38e6b9fe-c754-485a-9999-58c4b5163355\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"7071e656-e80e-4be1-a8cf-a69c0aeb3940\\\"\",\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/\\\"38e6b9fe-c754-485a-9999-58c4b5163355\\\"\",\r\n + \ \"etag\": \"W/\\\"7071e656-e80e-4be1-a8cf-a69c0aeb3940\\\"\",\r\n \ \"type\": \"Microsoft.Network/azureFirewalls/azureFirewallIpConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAddress\": \"10.0.0.4\",\r\n \"privateIPAllocationMethod\": @@ -2861,9 +2840,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:59:35 GMT + - Fri, 21 May 2021 03:39:06 GMT etag: - - W/"38e6b9fe-c754-485a-9999-58c4b5163355" + - W/"7071e656-e80e-4be1-a8cf-a69c0aeb3940" expires: - '-1' pragma: @@ -2880,7 +2859,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a801eec2-1b5d-414b-ac67-8ceed1388458 + - d15c497c-c3e8-47f0-a829-3cc6e5939e15 status: code: 200 message: OK @@ -2902,7 +2881,7 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/firewallPolicies/myclipolicy2?api-version=2020-07-01 response: @@ -2912,10 +2891,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\": \"5f75426b-0359-40a0-ab7d-6bac227ab2fc\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"1bf5e0e4-ba15-4ef8-a007-1a87f6124cfd\",\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/f104dc7b-a2e2-4729-b839-6d31eb672034?api-version=2020-07-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/d2455642-d96b-4e6d-9514-c9655cc06800?api-version=2020-07-01 cache-control: - no-cache content-length: @@ -2923,7 +2902,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:59:44 GMT + - Fri, 21 May 2021 03:39:15 GMT expires: - '-1' pragma: @@ -2935,7 +2914,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -2953,9 +2932,9 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/nfvOperations/f104dc7b-a2e2-4729-b839-6d31eb672034?api-version=2020-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/d2455642-d96b-4e6d-9514-c9655cc06800?api-version=2020-07-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -2967,7 +2946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 04:59:54 GMT + - Fri, 21 May 2021 03:39:25 GMT expires: - '-1' pragma: @@ -2999,542 +2978,7 @@ interactions: ParameterSetName: - -g -n -l --sku User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"5f75426b-0359-40a0-ab7d-6bac227ab2fc\",\r\n \"location\": \"westus2\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '593' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 04:59:54 GMT - etag: - - '"5f75426b-0359-40a0-ab7d-6bac227ab2fc"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-resource/12.1.0 Azure-SDK-For-Python AZURECLI/2.22.1 - 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-04-21T04:27:14Z"},"properties":{"provisioningState":"Succeeded"}}' - headers: - cache-control: - - no-cache - content-length: - - '429' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 04:59:57 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": "westus2"}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - identity create - Connection: - - keep-alive - Content-Length: - - '23' - Content-Type: - - application/json; charset=utf-8 - ParameterSetName: - - -g -n - User-Agent: - - python/3.8.3 (Windows-10-10.0.18362-SP0) msrest/0.6.21 msrest_azure/0.6.3 - azure-mgmt-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.22.1 - 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":"72f988bf-86f1-41af-91ab-2d7cd011db47","principalId":"81912d7d-0d29-4fca-995e-003936c411fe","clientId":"ad16e2e8-b1fe-407a-a300-8e1e9ed90883","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=72f988bf-86f1-41af-91ab-2d7cd011db47&oid=81912d7d-0d29-4fca-995e-003936c411fe&aid=ad16e2e8-b1fe-407a-a300-8e1e9ed90883"}}' - headers: - cache-control: - - no-cache - content-length: - - '914' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:07 GMT - expires: - - '-1' - location: - - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - 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 policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --identity - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"5f75426b-0359-40a0-ab7d-6bac227ab2fc\",\r\n \"location\": \"westus2\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '593' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:10 GMT - etag: - - '"5f75426b-0359-40a0-ab7d-6bac227ab2fc"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2", - "location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": - {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest": - {}}}, "properties": {"threatIntelMode": "Alert", "sku": {"tier": "Premium"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - Content-Length: - - '593' - Content-Type: - - application/json - ParameterSetName: - - -g -n --identity - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"070ca511-d52e-4719-87b5-9c3ed2d97578\",\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/864a5f60-95e7-4a3f-b123-1f0837ba8790?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '912' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:17 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --identity - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/864a5f60-95e7-4a3f-b123-1f0837ba8790?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: - - Wed, 21 Apr 2021 05:00:27 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --identity - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"070ca511-d52e-4719-87b5-9c3ed2d97578\",\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\": \"ad16e2e8-b1fe-407a-a300-8e1e9ed90883\",\r\n \"principalId\": - \"81912d7d-0d29-4fca-995e-003936c411fe\"\r\n }\r\n }\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1045' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:28 GMT - etag: - - '"070ca511-d52e-4719-87b5-9c3ed2d97578"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --remove - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"070ca511-d52e-4719-87b5-9c3ed2d97578\",\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\": \"ad16e2e8-b1fe-407a-a300-8e1e9ed90883\",\r\n \"principalId\": - \"81912d7d-0d29-4fca-995e-003936c411fe\"\r\n }\r\n }\r\n }\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '1045' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:30 GMT - etag: - - '"070ca511-d52e-4719-87b5-9c3ed2d97578"' - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_azure_firewall_with_firewall_policy000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2", - "location": "westus2", "identity": {"type": "None"}, "properties": {"threatIntelMode": - "Alert", "sku": {"tier": "Premium"}}}' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - Content-Length: - - '335' - Content-Type: - - application/json - ParameterSetName: - - -g -n --remove - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-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/firewallPolicies/myclipolicy2?api-version=2020-07-01 - response: - body: - string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n - \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n - \ \"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\": \"3480da24-c373-4fd3-ba3d-89acbaf12c5f\",\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/898c0c34-feab-4ff0-bb32-09ed21159e66?api-version=2020-07-01 - cache-control: - - no-cache - content-length: - - '635' - content-type: - - application/json; charset=utf-8 - date: - - Wed, 21 Apr 2021 05:00:36 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-writes: - - '1198' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --remove - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus2/nfvOperations/898c0c34-feab-4ff0-bb32-09ed21159e66?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: - - Wed, 21 Apr 2021 05:00:47 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network firewall policy update - Connection: - - keep-alive - ParameterSetName: - - -g -n --remove - User-Agent: - - AZURECLI/2.22.1 azsdk-python-azure-mgmt-network/18.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.23.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/firewallPolicies/myclipolicy2?api-version=2020-07-01 response: @@ -3544,7 +2988,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\": \"3480da24-c373-4fd3-ba3d-89acbaf12c5f\",\r\n \"location\": \"westus2\"\r\n}" + \ \"etag\": \"1bf5e0e4-ba15-4ef8-a007-1a87f6124cfd\",\r\n \"location\": \"westus2\"\r\n}" headers: cache-control: - no-cache @@ -3553,9 +2997,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Wed, 21 Apr 2021 05:00:47 GMT + - Fri, 21 May 2021 03:39:25 GMT etag: - - '"3480da24-c373-4fd3-ba3d-89acbaf12c5f"' + - '"1bf5e0e4-ba15-4ef8-a007-1a87f6124cfd"' expires: - '-1' pragma: diff --git a/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy_premium.yaml b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy_premium.yaml new file mode 100644 index 00000000000..f5fcef81570 --- /dev/null +++ b/src/azure-firewall/azext_firewall/tests/latest/recordings/test_azure_firewall_with_firewall_policy_premium.yaml @@ -0,0 +1,688 @@ +interactions: +- request: + body: '{"location": "westus2", "properties": {"sku": {"tier": "Premium"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + Content-Length: + - '67' + Content-Type: + - application/json + ParameterSetName: + - -g -n -l --sku + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"c88b1cb7-858a-4356-b74d-c6dd7ab9be84\",\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/ec41ef36-5d4d-4c9a-acff-a71677bba5c2?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '592' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --sku + User-Agent: + - AZURECLI/2.23.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/nfvOperations/ec41ef36-5d4d-4c9a-acff-a71677bba5c2?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: + - Fri, 21 May 2021 03:16:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy create + Connection: + - keep-alive + ParameterSetName: + - -g -n -l --sku + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"c88b1cb7-858a-4356-b74d-c6dd7ab9be84\",\r\n \"location\": \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '593' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:34 GMT + etag: + - '"c88b1cb7-858a-4356-b74d-c6dd7ab9be84"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + ParameterSetName: + - -g -n + User-Agent: + - AZURECLI/2.23.0 azsdk-python-azure-mgmt-resource/16.1.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_with_firewall_policy_premium000001?api-version=2020-10-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001","name":"test_azure_firewall_with_firewall_policy_premium000001","type":"Microsoft.Resources/resourceGroups","location":"westus2","tags":{"product":"azurecli","cause":"automation","date":"2021-05-21T03:16:12Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '429' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:35 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": "westus2"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - identity create + Connection: + - keep-alive + Content-Length: + - '23' + 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-msi/0.2.0 Azure-SDK-For-Python AZURECLI/2.23.0 + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest?api-version=2015-08-31-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest","name":"identitytest","type":"Microsoft.ManagedIdentity/userAssignedIdentities","location":"westus2","tags":{},"properties":{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","principalId":"dba2b4cc-ffe5-4a86-8cb6-83be15ac6d5b","clientId":"5dcbcccf-93dc-41d3-9969-3d64b79fb5a9","clientSecretUrl":"https://control-westus2.identity.azure.net/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest/credentials?tid=54826b22-38d6-4fb2-bad9-b7b93a3e9c5a&oid=dba2b4cc-ffe5-4a86-8cb6-83be15ac6d5b&aid=5dcbcccf-93dc-41d3-9969-3d64b79fb5a9"}}' + headers: + cache-control: + - no-cache + content-length: + - '914' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:44 GMT + expires: + - '-1' + location: + - /subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + 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 policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --identity + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"c88b1cb7-858a-4356-b74d-c6dd7ab9be84\",\r\n \"location\": \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '593' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:44 GMT + etag: + - '"c88b1cb7-858a-4356-b74d-c6dd7ab9be84"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2", + "location": "westus2", "identity": {"type": "UserAssigned", "userAssignedIdentities": + {"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest": + {}}}, "properties": {"threatIntelMode": "Alert", "sku": {"tier": "Premium"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + Content-Length: + - '593' + Content-Type: + - application/json + ParameterSetName: + - -g -n --identity + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"1093b38e-3875-4885-9862-98d3fc4fb7e8\",\r\n \"location\": \"westus2\",\r\n + \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": + {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/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/43f35867-a075-4757-892b-32561e5d01c1?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '912' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:16:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --identity + User-Agent: + - AZURECLI/2.23.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/nfvOperations/43f35867-a075-4757-892b-32561e5d01c1?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: + - Fri, 21 May 2021 03:17:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --identity + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"1093b38e-3875-4885-9862-98d3fc4fb7e8\",\r\n \"location\": \"westus2\",\r\n + \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": + {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest\": + {\r\n \"clientId\": \"5dcbcccf-93dc-41d3-9969-3d64b79fb5a9\",\r\n \"principalId\": + \"dba2b4cc-ffe5-4a86-8cb6-83be15ac6d5b\"\r\n }\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1045' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:17:02 GMT + etag: + - '"1093b38e-3875-4885-9862-98d3fc4fb7e8"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --remove + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"1093b38e-3875-4885-9862-98d3fc4fb7e8\",\r\n \"location\": \"westus2\",\r\n + \ \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n \"userAssignedIdentities\": + {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.ManagedIdentity/userAssignedIdentities/identitytest\": + {\r\n \"clientId\": \"5dcbcccf-93dc-41d3-9969-3d64b79fb5a9\",\r\n \"principalId\": + \"dba2b4cc-ffe5-4a86-8cb6-83be15ac6d5b\"\r\n }\r\n }\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1045' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:17:03 GMT + etag: + - '"1093b38e-3875-4885-9862-98d3fc4fb7e8"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2", + "location": "westus2", "identity": {"type": "None"}, "properties": {"threatIntelMode": + "Alert", "sku": {"tier": "Premium"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + Content-Length: + - '335' + Content-Type: + - application/json + ParameterSetName: + - -g -n --remove + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Updating\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"06d40d30-cc0e-42ff-b980-4d1ba218461d\",\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/c32f96b5-a7db-487c-ab28-d1f34fa51a87?api-version=2020-07-01 + cache-control: + - no-cache + content-length: + - '635' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:17:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --remove + User-Agent: + - AZURECLI/2.23.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/nfvOperations/c32f96b5-a7db-487c-ab28-d1f34fa51a87?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: + - Fri, 21 May 2021 03:17:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - network firewall policy update + Connection: + - keep-alive + ParameterSetName: + - -g -n --remove + User-Agent: + - AZURECLI/2.23.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_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2?api-version=2020-07-01 + response: + body: + string: "{\r\n \"properties\": {\r\n \"sku\": {\r\n \"tier\": \"Premium\"\r\n + \ },\r\n \"threatIntelMode\": \"Alert\",\r\n \"childPolicies\": [],\r\n + \ \"ruleCollectionGroups\": [],\r\n \"firewalls\": [],\r\n \"provisioningState\": + \"Succeeded\"\r\n },\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_azure_firewall_with_firewall_policy_premium000001/providers/Microsoft.Network/firewallPolicies/myclipolicy2\",\r\n + \ \"name\": \"myclipolicy2\",\r\n \"type\": \"Microsoft.Network/FirewallPolicies\",\r\n + \ \"etag\": \"06d40d30-cc0e-42ff-b980-4d1ba218461d\",\r\n \"location\": \"westus2\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '593' + content-type: + - application/json; charset=utf-8 + date: + - Fri, 21 May 2021 03:17:21 GMT + etag: + - '"06d40d30-cc0e-42ff-b980-4d1ba218461d"' + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + 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 a44770157e0..7534d8eabbf 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', @@ -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) @@ -332,8 +333,21 @@ def test_azure_firewall_with_firewall_policy(self, resource_group, resource_grou self.check('name', '{policy2}') ]) + @ResourceGroupPreparer(name_prefix='test_azure_firewall_with_firewall_policy_premium', location='westus2') + def test_azure_firewall_with_firewall_policy_premium(self, resource_group, resource_group_location): + self.kwargs.update({ + 'policy2': 'myclipolicy2', + 'rg': resource_group, + 'location': resource_group_location, + }) + + self.cmd('network firewall policy create -g {rg} -n {policy2} -l {location} --sku Premium', checks=[ + self.check('type', 'Microsoft.Network/FirewallPolicies'), + self.check('name', '{policy2}') + ]) + # test firewall policy identity - identity = self.cmd('identity create -g {rg} -n identitytest').get_output_in_json() + identity = self.cmd('identity create -g {rg} -n identitytest',).get_output_in_json() self.kwargs.update({'id': identity['id']}) self.cmd('network firewall policy update -g {rg} -n {policy2} --identity {id}', checks=[self.exists('identity')]) @@ -812,3 +826,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')) diff --git a/src/azure-firewall/setup.py b/src/azure-firewall/setup.py index d89ced0abc4..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.1" +VERSION = "0.10.0" CLASSIFIERS = [ 'Development Status :: 4 - Beta',