diff --git a/linter_exclusions.yml b/linter_exclusions.yml index 38a628db181..fb0102c2e86 100644 --- a/linter_exclusions.yml +++ b/linter_exclusions.yml @@ -3632,6 +3632,9 @@ vmss create: automatic_repairs_grace_period: rule_exclusions: - option_length_too_long + automatic_repairs_action: + rule_exclusions: + - option_length_too_long data_disk_encryption_sets: rule_exclusions: - option_length_too_long @@ -3689,6 +3692,9 @@ vmss update: enable_automatic_repairs: rule_exclusions: - option_length_too_long + automatic_repairs_action: + rule_exclusions: + - option_length_too_long enable_terminate_notification: rule_exclusions: - option_length_too_long diff --git a/src/azure-cli/azure/cli/command_modules/vm/_params.py b/src/azure-cli/azure/cli/command_modules/vm/_params.py index c38969faeaa..dc1fb5aaf76 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_params.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_params.py @@ -656,6 +656,7 @@ def load_arguments(self, _): c.argument('scale_in_policy', scale_in_policy_type) c.argument('automatic_repairs_grace_period', min_api='2018-10-01', help='The amount of time (in minutes, between 30 and 90) for which automatic repairs are suspended due to a state change on VM.') + c.argument('automatic_repairs_action', arg_type=get_enum_type(['Replace', 'Restart', 'Reimage']), min_api='2021-11-01', help='Type of repair action that will be used for repairing unhealthy virtual machines in the scale set.') c.argument('user_data', help='UserData for the virtual machines in the scale set. It can be passed in as file or string.', completer=FilesCompleter(), type=file_type, min_api='2021-03-01') c.argument('network_api_version', min_api='2021-03-01', help="Specify the Microsoft.Network API version used when creating networking resources in the Network " @@ -714,11 +715,13 @@ def load_arguments(self, _): c.argument('enable_vtpm', enable_vtpm_type) with self.argument_context('vmss update', min_api='2018-10-01', arg_group='Automatic Repairs') as c: + c.argument('enable_automatic_repairs', arg_type=get_three_state_flag(), help='Enable automatic repairs') c.argument( 'automatic_repairs_grace_period', help='The amount of time (in minutes, between 30 and 90) for which automatic repairs are suspended due to a state change on VM.' ) + c.argument('automatic_repairs_action', arg_type=get_enum_type(['Replace', 'Restart', 'Reimage']), min_api='2021-11-01', help='Type of repair action that will be used for repairing unhealthy virtual machines in the scale set.') for scope in ['vmss create', 'vmss update']: with self.argument_context(scope) as c: diff --git a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py index 7ce9e00b147..5015956f833 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_template_builder.py @@ -848,7 +848,7 @@ def build_vmss_resource(cmd, name, computer_name_prefix, location, tags, overpro orchestration_mode=None, user_data=None, network_api_version=None, enable_spot_restore=None, spot_restore_timeout=None, capacity_reservation_group=None, enable_auto_update=None, patch_mode=None, enable_agent=None, security_type=None, - enable_secure_boot=None, enable_vtpm=None,): + enable_secure_boot=None, enable_vtpm=None, automatic_repairs_action=None): # Build IP configuration ip_configuration = {} @@ -1167,10 +1167,11 @@ def build_vmss_resource(cmd, name, computer_name_prefix, location, tags, overpro } virtual_machine_profile['scheduledEventsProfile'] = scheduled_events_profile - if automatic_repairs_grace_period is not None: + if automatic_repairs_grace_period is not None or automatic_repairs_action is not None: automatic_repairs_policy = { 'enabled': 'true', - 'gracePeriod': automatic_repairs_grace_period + 'gracePeriod': automatic_repairs_grace_period or 'PT10M', + 'repairAction': automatic_repairs_action or 'Replace' } vmss_properties['automaticRepairsPolicy'] = automatic_repairs_policy diff --git a/src/azure-cli/azure/cli/command_modules/vm/_validators.py b/src/azure-cli/azure/cli/command_modules/vm/_validators.py index fdc9722e579..9ad25dfe508 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/_validators.py +++ b/src/azure-cli/azure/cli/command_modules/vm/_validators.py @@ -1910,18 +1910,21 @@ def _validate_vmss_terminate_notification(cmd, namespace): # pylint: disable=un def _validate_vmss_create_automatic_repairs(cmd, namespace): # pylint: disable=unused-argument - if namespace.automatic_repairs_grace_period is not None: + if namespace.automatic_repairs_grace_period is not None or namespace.automatic_repairs_action is not None: if namespace.load_balancer is None or namespace.health_probe is None: - raise CLIError("usage error: --load-balancer and --health-probe are required " - "when creating vmss with automatic repairs") + raise ArgumentUsageError("usage error: --load-balancer and --health-probe are required " + "when creating vmss with automatic repairs") _validate_vmss_automatic_repairs(cmd, namespace) def _validate_vmss_update_automatic_repairs(cmd, namespace): # pylint: disable=unused-argument - if namespace.enable_automatic_repairs is False and namespace.automatic_repairs_grace_period is not None: - raise CLIError("usage error: please enable --enable-automatic-repairs") - if namespace.enable_automatic_repairs is True and namespace.automatic_repairs_grace_period is None: - raise CLIError("usage error: please set --automatic-repairs-grace-period") + if namespace.enable_automatic_repairs is False and \ + (namespace.automatic_repairs_grace_period is not None or namespace.automatic_repairs_action is not None): + raise ArgumentUsageError("usage error: please enable --enable-automatic-repairs") + if namespace.enable_automatic_repairs is True and namespace.automatic_repairs_grace_period is None\ + and namespace.automatic_repairs_action is None: + raise ArgumentUsageError("usage error: please set --automatic-repairs-grace-period or" + " --automatic-repairs-action") _validate_vmss_automatic_repairs(cmd, namespace) diff --git a/src/azure-cli/azure/cli/command_modules/vm/custom.py b/src/azure-cli/azure/cli/command_modules/vm/custom.py index 62e614eccf2..9b5e7b31980 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/custom.py +++ b/src/azure-cli/azure/cli/command_modules/vm/custom.py @@ -2816,7 +2816,8 @@ def create_vmss(cmd, vmss_name, resource_group_name, image=None, enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, edge_zone=None, user_data=None, network_api_version=None, enable_spot_restore=None, spot_restore_timeout=None, capacity_reservation_group=None, enable_auto_update=None, patch_mode=None, enable_agent=None, - security_type=None, enable_secure_boot=None, enable_vtpm=None): + security_type=None, enable_secure_boot=None, enable_vtpm=None, automatic_repairs_action=None): + from azure.cli.core.commands.client_factory import get_subscription_id from azure.cli.core.util import random_string, hash_string from azure.cli.core.commands.arm import ArmTemplateBuilder @@ -3079,7 +3080,8 @@ def _get_public_ip_address_allocation(value, sku): enable_spot_restore=enable_spot_restore, spot_restore_timeout=spot_restore_timeout, capacity_reservation_group=capacity_reservation_group, enable_auto_update=enable_auto_update, patch_mode=patch_mode, enable_agent=enable_agent, security_type=security_type, - enable_secure_boot=enable_secure_boot, enable_vtpm=enable_vtpm) + enable_secure_boot=enable_secure_boot, enable_vtpm=enable_vtpm, + automatic_repairs_action=automatic_repairs_action) vmss_resource['dependsOn'] = vmss_dependencies @@ -3370,7 +3372,7 @@ def update_vmss(cmd, resource_group_name, name, license_type=None, no_wait=False pause_time_between_batches=None, enable_cross_zone_upgrade=None, prioritize_unhealthy_instances=None, user_data=None, enable_spot_restore=None, spot_restore_timeout=None, capacity_reservation_group=None, vm_sku=None, ephemeral_os_disk_placement=None, force_deletion=None, enable_secure_boot=None, - enable_vtpm=None, **kwargs): + enable_vtpm=None, automatic_repairs_action=None, **kwargs): vmss = kwargs['parameters'] aux_subscriptions = None # pylint: disable=too-many-boolean-expressions @@ -3430,10 +3432,13 @@ def update_vmss(cmd, resource_group_name, name, license_type=None, no_wait=False TerminateNotificationProfile(not_before_timeout=terminate_notification_time, enable=enable_terminate_notification) - if enable_automatic_repairs is not None or automatic_repairs_grace_period is not None: + if enable_automatic_repairs is not None or \ + automatic_repairs_grace_period is not None or automatic_repairs_action is not None: AutomaticRepairsPolicy = cmd.get_models('AutomaticRepairsPolicy') vmss.automatic_repairs_policy = \ - AutomaticRepairsPolicy(enabled="true", grace_period=automatic_repairs_grace_period) + AutomaticRepairsPolicy(enabled=enable_automatic_repairs, + grace_period=automatic_repairs_grace_period, + repair_action=automatic_repairs_action) if ultra_ssd_enabled is not None: if cmd.supported_api_version(min_api='2019-03-01', operation_group='virtual_machine_scale_sets'): diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_automatic_repairs_with_health_probe.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_automatic_repairs_with_health_probe.yaml index 2fc6e7ecf89..2568730f3ae 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_automatic_repairs_with_health_probe.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_create_automatic_repairs_with_health_probe.yaml @@ -13,21 +13,21 @@ interactions: ParameterSetName: - -g -n --image --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-12T10:12:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:27:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '404' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:09 GMT + - Mon, 21 Feb 2022 03:27:54 GMT expires: - '-1' pragma: @@ -51,7 +51,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -107,13 +107,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:10 GMT + - Mon, 21 Feb 2022 03:27:56 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Tue, 12 Oct 2021 10:17:10 GMT + - Mon, 21 Feb 2022 03:32:56 GMT source-age: - - '113' + - '216' strict-transport-security: - max-age=31536000 vary: @@ -127,15 +127,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 4cdf95b1087003dbba3c936718d99aaeb51f1b68 + - 3bd33f37098c3d5c9ce97662a654b100eba186b6 x-frame-options: - deny x-github-request-id: - - 9134:3EB0:EAFCB:21AA48:616554D0 + - A454:794B:243B9D:3221E7:62105F6C x-served-by: - - cache-qpg1241-QPG + - cache-qpg1238-QPG x-timer: - - S1634033531.919722,VS0,VE1 + - S1645414076.073215,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -155,7 +155,7 @@ interactions: ParameterSetName: - -g -n --image --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -169,7 +169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:11 GMT + - Mon, 21 Feb 2022 03:27:55 GMT expires: - '-1' pragma: @@ -197,21 +197,21 @@ interactions: ParameterSetName: - -g -n --image --load-balancer --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-12T10:12:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:27:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '404' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:11 GMT + - Mon, 21 Feb 2022 03:27:56 GMT expires: - '-1' pragma: @@ -235,7 +235,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -291,13 +291,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:12 GMT + - Mon, 21 Feb 2022 03:27:57 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Tue, 12 Oct 2021 10:17:12 GMT + - Mon, 21 Feb 2022 03:32:57 GMT source-age: - - '114' + - '217' strict-transport-security: - max-age=31536000 vary: @@ -307,19 +307,19 @@ interactions: x-cache: - HIT x-cache-hits: - - '2' + - '1' x-content-type-options: - nosniff x-fastly-request-id: - - e9f4fbc8e282a4f86120e88cfa5b33fb09819976 + - 2ff0751421fa87f396d621fc1ef6ce743c81460e x-frame-options: - deny x-github-request-id: - - 9134:3EB0:EAFCB:21AA48:616554D0 + - A454:794B:243B9D:3221E7:62105F6C x-served-by: - - cache-qpg1272-QPG + - cache-qpg1279-QPG x-timer: - - S1634033532.378549,VS0,VE0 + - S1645414077.324859,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -339,7 +339,7 @@ interactions: ParameterSetName: - -g -n --image --load-balancer --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -353,7 +353,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:12 GMT + - Mon, 21 Feb 2022 03:27:57 GMT expires: - '-1' pragma: @@ -381,7 +381,7 @@ interactions: ParameterSetName: - -g -n --image --load-balancer --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2018-01-01 response: @@ -393,11 +393,11 @@ interactions: cache-control: - no-cache content-length: - - '282' + - '270' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:13 GMT + - Mon, 21 Feb 2022 03:27:58 GMT expires: - '-1' pragma: @@ -425,21 +425,21 @@ interactions: ParameterSetName: - -g -n --image --health-probe --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-12T10:12:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:27:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '404' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:13 GMT + - Mon, 21 Feb 2022 03:27:57 GMT expires: - '-1' pragma: @@ -463,7 +463,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -519,13 +519,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:14 GMT + - Mon, 21 Feb 2022 03:27:59 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Tue, 12 Oct 2021 10:17:14 GMT + - Mon, 21 Feb 2022 03:32:59 GMT source-age: - - '116' + - '219' strict-transport-security: - max-age=31536000 vary: @@ -539,15 +539,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 11dd938b5f043090ad3b45a727ad10070a2a20e0 + - ac1ef46780af0920b1f242ebda1989b365ac621b x-frame-options: - deny x-github-request-id: - - 9134:3EB0:EAFCB:21AA48:616554D0 + - A454:794B:243B9D:3221E7:62105F6C x-served-by: - - cache-qpg1221-QPG + - cache-qpg1253-QPG x-timer: - - S1634033534.455624,VS0,VE0 + - S1645414079.176694,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -567,7 +567,7 @@ interactions: ParameterSetName: - -g -n --image --health-probe --automatic-repairs-grace-period --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -581,7 +581,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:14 GMT + - Mon, 21 Feb 2022 03:27:58 GMT expires: - '-1' pragma: @@ -609,21 +609,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-12T10:12:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:27:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '404' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:15 GMT + - Mon, 21 Feb 2022 03:27:59 GMT expires: - '-1' pragma: @@ -651,7 +651,7 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceGroup%20eq%20%27cli_test_vmss_create_automatic_repairs_with_health_probe_000001%27%20and%20name%20eq%20%27None%27%20and%20resourceType%20eq%20%27Microsoft.Network%2FpublicIPAddresses%27&api-version=2021-04-01 response: @@ -665,7 +665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:15 GMT + - Mon, 21 Feb 2022 03:28:00 GMT expires: - '-1' pragma: @@ -702,29 +702,29 @@ interactions: Connection: - keep-alive Content-Length: - - '1180' + - '1168' Content-Type: - application/json ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_w7Z0EdBKvpcgtWnQWSxZ8yqEhKj7ojLI","name":"lb_deploy_w7Z0EdBKvpcgtWnQWSxZ8yqEhKj7ojLI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16175353521738720109","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-12T10:12:20.2122667Z","duration":"PT2.1866241S","correlationId":"576549f9-f816-41aa-a934-43043a121da2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_3kq1dDAsBVj2MEAEAvUojqrR7QLOpsaE","name":"lb_deploy_3kq1dDAsBVj2MEAEAvUojqrR7QLOpsaE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15375105021879345","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-02-21T03:28:05.5993056Z","duration":"PT0.0003727S","correlationId":"1ed6fca4-ddfb-4871-941a-db3eee3144d9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_w7Z0EdBKvpcgtWnQWSxZ8yqEhKj7ojLI/operationStatuses/08585675733474519913?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_3kq1dDAsBVj2MEAEAvUojqrR7QLOpsaE/operationStatuses/08585561928029468779?api-version=2021-04-01 cache-control: - no-cache content-length: - - '1347' + - '1308' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:21 GMT + - Mon, 21 Feb 2022 03:28:06 GMT expires: - '-1' pragma: @@ -752,9 +752,9 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585675733474519913?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585561928029468779?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -766,7 +766,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:51 GMT + - Mon, 21 Feb 2022 03:28:37 GMT expires: - '-1' pragma: @@ -794,21 +794,21 @@ interactions: ParameterSetName: - -g -n User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_w7Z0EdBKvpcgtWnQWSxZ8yqEhKj7ojLI","name":"lb_deploy_w7Z0EdBKvpcgtWnQWSxZ8yqEhKj7ojLI","type":"Microsoft.Resources/deployments","properties":{"templateHash":"16175353521738720109","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-12T10:12:39.4183159Z","duration":"PT21.3926733S","correlationId":"576549f9-f816-41aa-a934-43043a121da2","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"89ebc662-8f72-49be-bca9-23adefd9a3fb","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"9a92f627-dad5-4f72-b69e-715236563d46\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"9a92f627-dad5-4f72-b69e-715236563d46\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/lb_deploy_3kq1dDAsBVj2MEAEAvUojqrR7QLOpsaE","name":"lb_deploy_3kq1dDAsBVj2MEAEAvUojqrR7QLOpsaE","type":"Microsoft.Resources/deployments","properties":{"templateHash":"15375105021879345","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-02-21T03:28:26.9578997Z","duration":"PT21.3589668S","correlationId":"1ed6fca4-ddfb-4871-941a-db3eee3144d9","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIPlb1"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1","resourceType":"Microsoft.Network/loadBalancers","resourceName":"lb1"}],"outputs":{"loadBalancer":{"type":"Object","value":{"provisioningState":"Succeeded","resourceGuid":"70fb8378-e6d3-4449-ab83-216fa369bb9a","frontendIPConfigurations":[{"name":"LoadBalancerFrontEnd","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd","etag":"W/\"88bdf32b-b7eb-4240-bd2b-1175bafdacc9\"","type":"Microsoft.Network/loadBalancers/frontendIPConfigurations","properties":{"provisioningState":"Succeeded","privateIPAllocationMethod":"Dynamic","publicIPAddress":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}}}],"backendAddressPools":[{"name":"lb1bepool","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool","etag":"W/\"88bdf32b-b7eb-4240-bd2b-1175bafdacc9\"","properties":{"provisioningState":"Succeeded"},"type":"Microsoft.Network/loadBalancers/backendAddressPools"}],"loadBalancingRules":[],"probes":[],"inboundNatRules":[],"inboundNatPools":[]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1"}]}}' headers: cache-control: - no-cache content-length: - - '3161' + - '3062' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:52 GMT + - Mon, 21 Feb 2022 03:28:37 GMT expires: - '-1' pragma: @@ -836,26 +836,26 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"9a92f627-dad5-4f72-b69e-715236563d46\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"88bdf32b-b7eb-4240-bd2b-1175bafdacc9\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"9a92f627-dad5-4f72-b69e-715236563d46\\\"\",\r\n + \ \"etag\": \"W/\\\"88bdf32b-b7eb-4240-bd2b-1175bafdacc9\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"9a92f627-dad5-4f72-b69e-715236563d46\\\"\",\r\n + \ \"etag\": \"W/\\\"88bdf32b-b7eb-4240-bd2b-1175bafdacc9\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n @@ -865,13 +865,13 @@ interactions: cache-control: - no-cache content-length: - - '2091' + - '2043' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:53 GMT + - Mon, 21 Feb 2022 03:28:39 GMT etag: - - W/"9a92f627-dad5-4f72-b69e-715236563d46" + - W/"88bdf32b-b7eb-4240-bd2b-1175bafdacc9" expires: - '-1' pragma: @@ -888,7 +888,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 4aaa42a5-2026-4e7b-a5d2-a22c6c8ca6a8 + - c25e1a98-a842-44a5-b311-0dc6f2fd3e3c status: code: 200 message: OK @@ -912,37 +912,37 @@ interactions: Connection: - keep-alive Content-Length: - - '1315' + - '1267' Content-Type: - application/json ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": @@ -953,15 +953,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5ec0fa7-c506-4b37-9736-36d3847e7066?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82be1210-03f3-4da9-9e81-288e101f1470?api-version=2021-05-01 cache-control: - no-cache content-length: - - '2684' + - '2624' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:12:56 GMT + - Mon, 21 Feb 2022 03:28:43 GMT expires: - '-1' pragma: @@ -978,9 +978,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - ac02d5de-c03c-49aa-80b8-543dec32c99a + - d5363e8e-9a9c-44f9-a6de-1a3a170055b1 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -998,9 +998,9 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/f5ec0fa7-c506-4b37-9736-36d3847e7066?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/82be1210-03f3-4da9-9e81-288e101f1470?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1012,7 +1012,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:13:26 GMT + - Mon, 21 Feb 2022 03:29:13 GMT expires: - '-1' pragma: @@ -1029,7 +1029,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d4f93414-a7b1-4b95-a6c7-80c0b7e44826 + - 4c8dcc77-aabc-407e-a6d1-44b0f7b8f8fb status: code: 200 message: OK @@ -1047,31 +1047,31 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": @@ -1082,13 +1082,13 @@ interactions: cache-control: - no-cache content-length: - - '2684' + - '2624' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:13:27 GMT + - Mon, 21 Feb 2022 03:29:13 GMT etag: - - W/"49bc7791-5308-437e-8d01-e96414eba08e" + - W/"4fbca943-8cca-4835-86a1-45025dc98535" expires: - '-1' pragma: @@ -1105,7 +1105,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 2b53cc19-70f1-4f52-8724-113c864825b5 + - 7bce9760-2646-4f2c-b85d-6185e1e7b7cd status: code: 200 message: OK @@ -1123,31 +1123,31 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/PublicIPlb1\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n \ },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"49bc7791-5308-437e-8d01-e96414eba08e\\\"\",\r\n + \ \"etag\": \"W/\\\"4fbca943-8cca-4835-86a1-45025dc98535\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": @@ -1158,13 +1158,13 @@ interactions: cache-control: - no-cache content-length: - - '2684' + - '2624' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:13:28 GMT + - Mon, 21 Feb 2022 03:29:15 GMT etag: - - W/"49bc7791-5308-437e-8d01-e96414eba08e" + - W/"4fbca943-8cca-4835-86a1-45025dc98535" expires: - '-1' pragma: @@ -1181,7 +1181,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3a4895d8-e8dc-4f30-9e49-c837d64a6ff2 + - c9acae84-bbf6-4a84-ba77-f17e9661d410 status: code: 200 message: OK @@ -1213,25 +1213,25 @@ interactions: Connection: - keep-alive Content-Length: - - '2892' + - '2784' Content-Type: - application/json ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1240,14 +1240,14 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n @@ -1263,7 +1263,7 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": @@ -1276,15 +1276,15 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46bfdf79-e36e-49f0-a5ed-81e88f15aa4c?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe34d7f9-db38-4056-9074-f3769669a574?api-version=2021-05-01 cache-control: - no-cache content-length: - - '5658' + - '5502' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:13:32 GMT + - Mon, 21 Feb 2022 03:29:19 GMT expires: - '-1' pragma: @@ -1301,9 +1301,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 70b8250a-523f-42f7-ab54-2269f173b90c + - df906084-319d-4efb-9269-977393e86cce x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -1321,9 +1321,9 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/46bfdf79-e36e-49f0-a5ed-81e88f15aa4c?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/fe34d7f9-db38-4056-9074-f3769669a574?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1335,7 +1335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:02 GMT + - Mon, 21 Feb 2022 03:29:49 GMT expires: - '-1' pragma: @@ -1352,7 +1352,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 0b4c013c-59b7-4f37-a337-653a720e8f1b + - 43bd6c54-ecc6-4442-a8f4-8c45ad2d573a status: code: 200 message: OK @@ -1370,19 +1370,19 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1391,14 +1391,14 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n @@ -1414,7 +1414,7 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": @@ -1427,13 +1427,13 @@ interactions: cache-control: - no-cache content-length: - - '5658' + - '5502' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:02 GMT + - Mon, 21 Feb 2022 03:29:49 GMT etag: - - W/"f5b31657-669b-426b-bd86-17135fdd49af" + - W/"2171d8af-4283-4615-9065-c6bf7ef561ad" expires: - '-1' pragma: @@ -1450,7 +1450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 41b6bb8c-2461-46de-b9f3-80c43506263b + - 2322ee0a-9611-4c62-92ac-6955b31bfc93 status: code: 200 message: OK @@ -1467,23 +1467,23 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2021-10-12T10:12:08Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_create_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:27:51Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache content-length: - - '428' + - '404' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:03 GMT + - Mon, 21 Feb 2022 03:29:49 GMT expires: - '-1' pragma: @@ -1507,7 +1507,7 @@ interactions: Connection: - keep-alive User-Agent: - - python-requests/2.25.1 + - python-requests/2.26.0 method: GET uri: https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-compute/quickstart-templates/aliases.json response: @@ -1563,13 +1563,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:04 GMT + - Mon, 21 Feb 2022 03:29:51 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Tue, 12 Oct 2021 10:19:04 GMT + - Mon, 21 Feb 2022 03:34:51 GMT source-age: - - '226' + - '0' strict-transport-security: - max-age=31536000 vary: @@ -1583,15 +1583,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - 0cef46c58f147709ecd613d99e9ec8616969202c + - 0217f72f245e0b20b5b0f7b1ccd7a260c4b8e6b5 x-frame-options: - deny x-github-request-id: - - 9134:3EB0:EAFCB:21AA48:616554D0 + - A454:794B:243B9D:3221E7:62105F6C x-served-by: - - cache-qpg1261-QPG + - cache-qpg1283-QPG x-timer: - - S1634033644.264993,VS0,VE1 + - S1645414191.208207,VS0,VE280 x-xss-protection: - 1; mode=block status: @@ -1610,9 +1610,9 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -1626,7 +1626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:03 GMT + - Mon, 21 Feb 2022 03:29:51 GMT expires: - '-1' pragma: @@ -1653,21 +1653,21 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1676,14 +1676,14 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n @@ -1695,7 +1695,7 @@ interactions: \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": @@ -1707,13 +1707,13 @@ interactions: cache-control: - no-cache content-length: - - '5229' + - '5085' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:04 GMT + - Mon, 21 Feb 2022 03:29:52 GMT etag: - - W/"f5b31657-669b-426b-bd86-17135fdd49af" + - W/"2171d8af-4283-4615-9065-c6bf7ef561ad" expires: - '-1' pragma: @@ -1730,7 +1730,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - e75d229a-df0e-4526-a419-9f11babe70fa + - 5fc782ed-58df-4f9a-ba25-213d056a188f status: code: 200 message: OK @@ -1747,21 +1747,21 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-network/19.1.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1?api-version=2018-01-01 response: body: string: "{\r\n \"name\": \"lb1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"89ebc662-8f72-49be-bca9-23adefd9a3fb\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"70fb8378-e6d3-4449-ab83-216fa369bb9a\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"LoadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1770,14 +1770,14 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"lb1bepool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/frontendIPConfigurations/LoadBalancerFrontEnd\"\r\n @@ -1789,7 +1789,7 @@ interactions: \ },\r\n \"probe\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe\",\r\n - \ \"etag\": \"W/\\\"f5b31657-669b-426b-bd86-17135fdd49af\\\"\",\r\n + \ \"etag\": \"W/\\\"2171d8af-4283-4615-9065-c6bf7ef561ad\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": @@ -1801,13 +1801,13 @@ interactions: cache-control: - no-cache content-length: - - '5229' + - '5085' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:06 GMT + - Mon, 21 Feb 2022 03:29:53 GMT etag: - - W/"f5b31657-669b-426b-bd86-17135fdd49af" + - W/"2171d8af-4283-4615-9065-c6bf7ef561ad" expires: - '-1' pragma: @@ -1824,7 +1824,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - a40cc3af-1331-498f-b8a7-e5a869750b77 + - 1caeef27-e9e0-4079-a95e-666dee817a10 status: code: 200 message: OK @@ -1836,18 +1836,18 @@ interactions: {"addressSpace": {"addressPrefixes": ["10.0.0.0/16"]}, "subnets": [{"name": "vmss1Subnet", "properties": {"addressPrefix": "10.0.0.0/24"}}]}}, {"type": "Microsoft.Compute/virtualMachineScaleSets", "name": "vmss1", "location": "westus", - "tags": {}, "apiVersion": "2021-04-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmss1VNET"], + "tags": {}, "apiVersion": "2021-11-01", "dependsOn": ["Microsoft.Network/virtualNetworks/vmss1VNET"], "properties": {"overprovision": true, "upgradePolicy": {"mode": "manual", "rollingUpgradePolicy": {}}, "singlePlacementGroup": null, "automaticRepairsPolicy": {"enabled": "true", - "gracePeriod": "PT30M"}, "virtualMachineProfile": {"storageProfile": {"osDisk": - {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": - null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", - "sku": "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": - "vmss1e483", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": - true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", - "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss1e483Nic", - "properties": {"ipConfigurations": [{"name": "vmss1e483IPConfig", "properties": + "gracePeriod": "PT30M", "repairAction": "Restart"}, "virtualMachineProfile": + {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", + "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": + "Canonical", "offer": "UbuntuServer", "sku": "18.04-LTS", "version": "latest"}}, + "osProfile": {"computerNamePrefix": "vmss196b2", "adminUsername": "azureuser", + "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": + [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]}}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss196b2Nic", + "properties": {"ipConfigurations": [{"name": "vmss196b2IPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool"}]}}], "primary": "true"}}], "healthProbe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe"}}}, @@ -1865,30 +1865,30 @@ interactions: Connection: - keep-alive Content-Length: - - '3036' + - '3027' Content-Type: - application/json ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_A7ISE438xYm43f2QIZXm2h3pDgauN949","name":"vmss_deploy_A7ISE438xYm43f2QIZXm2h3pDgauN949","type":"Microsoft.Resources/deployments","properties":{"templateHash":"567243616110789267","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2021-10-12T10:14:10.6654765Z","duration":"PT2.2067487S","correlationId":"ce2f28b2-0ee9-48a9-a634-8f84f49d9b98","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_DS5nwolyfFTRWaDWD9BUuUizShTtvtzZ","name":"vmss_deploy_DS5nwolyfFTRWaDWD9BUuUizShTtvtzZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4010172466224230481","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-02-21T03:30:06.4838371Z","duration":"PT0.000282S","correlationId":"bc8518e2-5edf-49cf-9c58-fa1d04ca4bfe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_A7ISE438xYm43f2QIZXm2h3pDgauN949/operationStatuses/08585675732370189030?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_DS5nwolyfFTRWaDWD9BUuUizShTtvtzZ/operationStatuses/08585561926815586182?api-version=2021-04-01 cache-control: - no-cache content-length: - - '1425' + - '1389' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:14:13 GMT + - Mon, 21 Feb 2022 03:30:08 GMT expires: - '-1' pragma: @@ -1898,7 +1898,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -1915,54 +1915,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username - User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.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_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585675732370189030?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Tue, 12 Oct 2021 10:14:43 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: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585675732370189030?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585561926815586182?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1974,7 +1931,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:15:14 GMT + - Mon, 21 Feb 2022 03:30:39 GMT expires: - '-1' pragma: @@ -2001,11 +1958,11 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585675732370189030?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585561926815586182?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -2017,7 +1974,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:15:44 GMT + - Mon, 21 Feb 2022 03:31:10 GMT expires: - '-1' pragma: @@ -2044,24 +2001,24 @@ interactions: - keep-alive ParameterSetName: - -g -n --image --load-balancer --health-probe --automatic-repairs-grace-period - --admin-username + --automatic-repairs-action --admin-username User-Agent: - - AZURECLI/2.29.0 azsdk-python-azure-mgmt-resource/19.0.0 Python/3.8.3 (Windows-10-10.0.18362-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_A7ISE438xYm43f2QIZXm2h3pDgauN949","name":"vmss_deploy_A7ISE438xYm43f2QIZXm2h3pDgauN949","type":"Microsoft.Resources/deployments","properties":{"templateHash":"567243616110789267","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2021-10-12T10:15:34.6660206Z","duration":"PT1M26.2072928S","correlationId":"ce2f28b2-0ee9-48a9-a634-8f84f49d9b98","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss1e483","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDdSu5jSl0pD/VDsPv8SqVYvYCYf7ToFUqzrtQYsNQhFneukRzMw3otTIku3eSelwnCc/t+88RvMrpcwCmc5meHXDwwQlEm/4sJ4mDfOnU2EOeI/2tEtMyOCgqXRN+jO68RBGGLG4z+b+I/Vdx5QxWId4W//Utr7yr5eMe+tRFGisSDAC433SWXHQWUnyCFGJ70chjHj2JfuvLw2GFNz5AlnNHYBJdeY1l3aqmSp8UClcqyXwLYdZJDY/sgt1gEMwBe/rzgLtrP94OS63W+o4UHPg03vm40NWoQq1Sxmyn58moWJmjFz2iWXf7cyBsn4+OwDWCOtZWFw/biIFNphDUh"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"healthProbe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe"},"networkInterfaceConfigurations":[{"name":"vmss1e483Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss1e483IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"ab5da256-5c18-4eed-a482-eb277e5fa8aa","automaticRepairsPolicy":{"enabled":true,"gracePeriod":"PT30M"}}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_DS5nwolyfFTRWaDWD9BUuUizShTtvtzZ","name":"vmss_deploy_DS5nwolyfFTRWaDWD9BUuUizShTtvtzZ","type":"Microsoft.Resources/deployments","properties":{"templateHash":"4010172466224230481","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-02-21T03:31:04.8680842Z","duration":"PT58.3845291S","correlationId":"bc8518e2-5edf-49cf-9c58-fa1d04ca4bfe","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss196b2","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"healthProbe":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/probes/probe"},"networkInterfaceConfigurations":[{"name":"vmss196b2Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss196b2IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/lb1/backendAddressPools/lb1bepool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"e23932ea-f140-46a9-aa1b-44bf8e5f6a92","automaticRepairsPolicy":{"enabled":true,"gracePeriod":"PT30M","repairAction":"Restart"},"timeCreated":"2022-02-21T03:30:22.4734806+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_create_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '4369' + - '4347' content-type: - application/json; charset=utf-8 date: - - Tue, 12 Oct 2021 10:15:45 GMT + - Mon, 21 Feb 2022 03:31:11 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_automatic_repairs_with_health_probe.yaml b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_automatic_repairs_with_health_probe.yaml index 936a2656e42..bae2fc09f13 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_automatic_repairs_with_health_probe.yaml +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/recordings/test_vmss_update_automatic_repairs_with_health_probe.yaml @@ -13,12 +13,12 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_update_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-10T08:44:36Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001","name":"cli_test_vmss_update_automatic_repairs_with_health_probe_000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-02-21T03:31:46Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -27,7 +27,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:44:38 GMT + - Mon, 21 Feb 2022 03:31:51 GMT expires: - '-1' pragma: @@ -107,13 +107,13 @@ interactions: content-type: - text/plain; charset=utf-8 date: - - Thu, 10 Feb 2022 08:44:38 GMT + - Mon, 21 Feb 2022 03:31:51 GMT etag: - W/"54bceef15b892f2aa7f4c2145a49f1b5e33608722acdbb47933d7b6cbebbd7f4" expires: - - Thu, 10 Feb 2022 08:49:38 GMT + - Mon, 21 Feb 2022 03:36:51 GMT source-age: - - '68' + - '120' strict-transport-security: - max-age=31536000 vary: @@ -127,15 +127,15 @@ interactions: x-content-type-options: - nosniff x-fastly-request-id: - - e4a899155f9d316355a7ad6151b6bf694a0eb0c9 + - 921d4649f49a04331e26873ddf7ef521f68f7efc x-frame-options: - deny x-github-request-id: - - 8A8A:1243:E431B1:126E74E:62024C20 + - A454:794B:243B9D:3221E7:62105F6C x-served-by: - - cache-qpg1257-QPG + - cache-qpg1229-QPG x-timer: - - S1644482679.838627,VS0,VE1 + - S1645414312.635740,VS0,VE1 x-xss-protection: - 1; mode=block status: @@ -155,7 +155,7 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks?api-version=2018-01-01 response: @@ -169,7 +169,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:44:39 GMT + - Mon, 21 Feb 2022 03:31:51 GMT expires: - '-1' pragma: @@ -208,12 +208,12 @@ interactions: null, "virtualMachineProfile": {"storageProfile": {"osDisk": {"createOption": "FromImage", "caching": "ReadWrite", "managedDisk": {"storageAccountType": null}}, "imageReference": {"publisher": "Canonical", "offer": "UbuntuServer", "sku": - "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss18861", + "18.04-LTS", "version": "latest"}}, "osProfile": {"computerNamePrefix": "vmss105fd", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]}}}, - "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss18861Nic", - "properties": {"ipConfigurations": [{"name": "vmss18861IPConfig", "properties": + "networkProfile": {"networkInterfaceConfigurations": [{"name": "vmss105fdNic", + "properties": {"ipConfigurations": [{"name": "vmss105fdIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}], @@ -237,15 +237,15 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uiCqoD1drvBuQEfTig4Z48GaQrcfmE0r","name":"vmss_deploy_uiCqoD1drvBuQEfTig4Z48GaQrcfmE0r","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8938071941334666923","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-02-10T08:44:48.5638697Z","duration":"PT0.0008816S","correlationId":"4121151a-b7aa-4ef9-9e05-8416f8bfb71a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_gQGTh5tYFR7OQFtUDHbfb3zoRf3gbl5q","name":"vmss_deploy_gQGTh5tYFR7OQFtUDHbfb3zoRf3gbl5q","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3660759256116658199","parameters":{},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-02-21T03:32:03.6267931Z","duration":"PT0.0005038S","correlationId":"4c9d45da-a865-4231-aae7-c1e8d4835a20","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uiCqoD1drvBuQEfTig4Z48GaQrcfmE0r/operationStatuses/08585571241988417287?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_gQGTh5tYFR7OQFtUDHbfb3zoRf3gbl5q/operationStatuses/08585561925630811632?api-version=2021-04-01 cache-control: - no-cache content-length: @@ -253,7 +253,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:44:50 GMT + - Mon, 21 Feb 2022 03:32:06 GMT expires: - '-1' pragma: @@ -263,7 +263,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 201 message: Created @@ -281,9 +281,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585571241988417287?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585561925630811632?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -295,7 +295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:45:20 GMT + - Mon, 21 Feb 2022 03:32:36 GMT expires: - '-1' pragma: @@ -323,51 +323,9 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585571241988417287?api-version=2021-04-01 - response: - body: - string: '{"status":"Running"}' - headers: - cache-control: - - no-cache - content-length: - - '20' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 10 Feb 2022 08:45:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - vmss create - Connection: - - keep-alive - ParameterSetName: - - -g -n --image --admin-username - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585571241988417287?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585561925630811632?api-version=2021-04-01 response: body: string: '{"status":"Succeeded"}' @@ -379,7 +337,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:46:21 GMT + - Mon, 21 Feb 2022 03:33:07 GMT expires: - '-1' pragma: @@ -407,22 +365,22 @@ interactions: ParameterSetName: - -g -n --image --admin-username User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_uiCqoD1drvBuQEfTig4Z48GaQrcfmE0r","name":"vmss_deploy_uiCqoD1drvBuQEfTig4Z48GaQrcfmE0r","type":"Microsoft.Resources/deployments","properties":{"templateHash":"8938071941334666923","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-02-10T08:45:59.9938303Z","duration":"PT1M11.4308422S","correlationId":"4121151a-b7aa-4ef9-9e05-8416f8bfb71a","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss18861","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa - AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss18861Nic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss18861IPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"184c1aee-4f57-43b3-b9af-4f000fde9edf","timeCreated":"2022-02-10T08:45:09.8811931+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Resources/deployments/vmss_deploy_gQGTh5tYFR7OQFtUDHbfb3zoRf3gbl5q","name":"vmss_deploy_gQGTh5tYFR7OQFtUDHbfb3zoRf3gbl5q","type":"Microsoft.Resources/deployments","properties":{"templateHash":"3660759256116658199","parameters":{},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-02-21T03:33:06.8009891Z","duration":"PT1M3.1746998S","correlationId":"4c9d45da-a865-4231-aae7-c1e8d4835a20","providers":[{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"vmss1LBPublicIP"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"vmss1VNET"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB","resourceType":"Microsoft.Network/loadBalancers","resourceName":"vmss1LB"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"vmss1"}],"outputs":{"vmss":{"type":"Object","value":{"singlePlacementGroup":true,"upgradePolicy":{"mode":"Manual","rollingUpgradePolicy":{"maxBatchInstancePercent":20,"maxUnhealthyInstancePercent":20,"maxUnhealthyUpgradedInstancePercent":20,"pauseTimeBetweenBatches":"PT0S"}},"virtualMachineProfile":{"osProfile":{"computerNamePrefix":"vmss105fd","adminUsername":"azureuser","linuxConfiguration":{"disablePasswordAuthentication":true,"ssh":{"publicKeys":[{"path":"/home/azureuser/.ssh/authorized_keys","keyData":"ssh-rsa + AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]},"provisionVMAgent":true},"secrets":[],"allowExtensionOperations":true,"requireGuestProvisionSignal":true},"storageProfile":{"osDisk":{"osType":"Linux","createOption":"FromImage","caching":"ReadWrite","managedDisk":{"storageAccountType":"Premium_LRS"},"diskSizeGB":30},"imageReference":{"publisher":"Canonical","offer":"UbuntuServer","sku":"18.04-LTS","version":"latest"}},"networkProfile":{"networkInterfaceConfigurations":[{"name":"vmss105fdNic","properties":{"primary":true,"enableAcceleratedNetworking":false,"dnsSettings":{"dnsServers":[]},"enableIPForwarding":false,"ipConfigurations":[{"name":"vmss105fdIPConfig","properties":{"subnet":{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"},"privateIPAddressVersion":"IPv4","loadBalancerBackendAddressPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}],"loadBalancerInboundNatPools":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool"}]}}]}}]}},"provisioningState":"Succeeded","overprovision":true,"doNotRunExtensionsOnOverprovisionedVMs":false,"uniqueId":"97dd94cc-5a26-45c0-a73f-42b4139472a3","timeCreated":"2022-02-21T03:32:24.7282551+00:00"}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET"}]}}' headers: cache-control: - no-cache content-length: - - '5918' + - '5917' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:46:22 GMT + - Mon, 21 Feb 2022 03:33:07 GMT expires: - '-1' pragma: @@ -450,19 +408,19 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -476,18 +434,18 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [],\r\n \ \"inboundNatRules\": [\r\n {\r\n \"name\": \"vmss1LBNatPool.0\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -495,10 +453,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -506,10 +464,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.2\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -517,10 +475,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -528,10 +486,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d\\\"\",\r\n + \ \"etag\": \"W/\\\"05e7f885-0fff-486a-921a-bf00fbd903c7\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -550,9 +508,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:46:24 GMT + - Mon, 21 Feb 2022 03:33:09 GMT etag: - - W/"7a5efce5-4c2f-4be9-9457-e2e58a4a2f1d" + - W/"05e7f885-0fff-486a-921a-bf00fbd903c7" expires: - '-1' pragma: @@ -569,7 +527,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - b4238f0c-6eca-4035-9af6-64cfcf8e7e25 + - 43e9994c-18f5-4227-a4fe-1a241a72e379 status: code: 200 message: OK @@ -620,19 +578,19 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -646,24 +604,24 @@ interactions: \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": \"vmss1LBNatPool.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -671,10 +629,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.1\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -682,10 +640,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.2\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.2\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -693,10 +651,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/2/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -704,10 +662,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"4d57edcc-cbb7-47a9-a4f2-8f4703cf6142\\\"\",\r\n + \ \"etag\": \"W/\\\"dc87984f-8092-4ab6-98dc-67f9c3ba36cf\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -722,7 +680,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60ec5c7-5f9f-4911-89f3-1988335f7c60?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1082923d-ae5c-403d-8625-d60915d97c61?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -730,7 +688,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:46:28 GMT + - Mon, 21 Feb 2022 03:33:14 GMT expires: - '-1' pragma: @@ -747,9 +705,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - fbd1615f-b0ec-456b-b47a-c15ce59c399a + - 7f46e799-ca01-4111-9030-69598a954c1b x-ms-ratelimit-remaining-subscription-writes: - - '1187' + - '1199' status: code: 200 message: OK @@ -767,9 +725,9 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60ec5c7-5f9f-4911-89f3-1988335f7c60?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1082923d-ae5c-403d-8625-d60915d97c61?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -781,7 +739,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:46:32 GMT + - Mon, 21 Feb 2022 03:33:18 GMT expires: - '-1' pragma: @@ -798,7 +756,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 508e2b41-5752-4cf2-af9d-95b6a598b41b + - 4a159a29-264f-42ba-9048-543b6b3e176a status: code: 200 message: OK @@ -816,58 +774,9 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60ec5c7-5f9f-4911-89f3-1988335f7c60?api-version=2021-05-01 - response: - body: - string: "{\r\n \"status\": \"InProgress\"\r\n}" - headers: - cache-control: - - no-cache - content-length: - - '30' - content-type: - - application/json; charset=utf-8 - date: - - Thu, 10 Feb 2022 08:46:43 GMT - expires: - - '-1' - pragma: - - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-arm-service-request-id: - - 3702d2be-996e-45aa-8eb7-d19612dd011e - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - '*/*' - Accept-Encoding: - - gzip, deflate - CommandName: - - network lb probe create - Connection: - - keep-alive - ParameterSetName: - - -g --lb-name -n --protocol --port - User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/d60ec5c7-5f9f-4911-89f3-1988335f7c60?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/1082923d-ae5c-403d-8625-d60915d97c61?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -879,7 +788,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:03 GMT + - Mon, 21 Feb 2022 03:33:28 GMT expires: - '-1' pragma: @@ -896,7 +805,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d7d90751-59ec-49f5-b94c-437f23e16c74 + - 7d175c3a-25b4-4447-bc5a-9e41e1696fda status: code: 200 message: OK @@ -914,57 +823,57 @@ interactions: ParameterSetName: - -g --lb-name -n --protocol --port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"\r\n \ },\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\"\r\n \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": - [\r\n {\r\n \"name\": \"vmss1LBNatPool.1\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + [\r\n {\r\n \"name\": \"vmss1LBNatPool.0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n - \ },\r\n \"frontendPort\": 50001,\r\n \"backendPort\": + \ },\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -972,10 +881,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -994,9 +903,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:03 GMT + - Mon, 21 Feb 2022 03:33:28 GMT etag: - - W/"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d" + - W/"aaadc8ba-a828-43c4-9a75-515e753a1993" expires: - '-1' pragma: @@ -1013,7 +922,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - f1e982fd-ded8-439d-afec-02a275a13b09 + - 7fc818ac-adbb-4295-bae4-4925f0cadf38 status: code: 200 message: OK @@ -1031,57 +940,57 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\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_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/publicIPAddresses/vmss1LBPublicIP\"\r\n \ },\r\n \"inboundNatRules\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\"\r\n \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [],\r\n \"probes\": [\r\n \ {\r\n \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n }\r\n ],\r\n \"inboundNatRules\": - [\r\n {\r\n \"name\": \"vmss1LBNatPool.1\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + [\r\n {\r\n \"name\": \"vmss1LBNatPool.0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n - \ },\r\n \"frontendPort\": 50001,\r\n \"backendPort\": + \ },\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -1089,10 +998,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d\\\"\",\r\n + \ \"etag\": \"W/\\\"aaadc8ba-a828-43c4-9a75-515e753a1993\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -1111,9 +1020,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:03 GMT + - Mon, 21 Feb 2022 03:33:29 GMT etag: - - W/"64c08a84-d5d3-4c9f-8fc2-9d29efcabb4d" + - W/"aaadc8ba-a828-43c4-9a75-515e753a1993" expires: - '-1' pragma: @@ -1130,7 +1039,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 57e58543-ceec-4347-be85-17004960005d + - 1e2955ac-0330-4996-8d71-cbae4187fa25 status: code: 200 message: OK @@ -1151,10 +1060,10 @@ interactions: 15, "numberOfProbes": 2}}, "protocol": "Tcp", "loadDistribution": "default", "frontendPort": 80, "backendPort": 80}}], "probes": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe", "name": "probe", "properties": {"protocol": "Tcp", "port": 80, "intervalInSeconds": - 15, "numberOfProbes": 2}}], "inboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1", - "name": "vmss1LBNatPool.1", "properties": {"frontendIPConfiguration": {"id": + 15, "numberOfProbes": 2}}], "inboundNatRules": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0", + "name": "vmss1LBNatPool.0", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}, - "protocol": "Tcp", "frontendPort": 50001, "backendPort": 22, "idleTimeoutInMinutes": + "protocol": "Tcp", "frontendPort": 50000, "backendPort": 22, "idleTimeoutInMinutes": 4, "enableFloatingIP": false, "enableTcpReset": false}}, {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3", "name": "vmss1LBNatPool.3", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd"}, @@ -1181,19 +1090,19 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1201,23 +1110,23 @@ interactions: \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\"\r\n \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -1233,26 +1142,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": - \"vmss1LBNatPool.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \"vmss1LBNatPool.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n - \ },\r\n \"frontendPort\": 50001,\r\n \"backendPort\": + \ },\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -1260,10 +1169,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"2c79ff72-d1f1-4d06-bee8-f6cbe323fb46\\\"\",\r\n + \ \"etag\": \"W/\\\"04b2dfb4-724a-48f9-a68f-b7fdfdcf0c4e\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -1278,7 +1187,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11f1a0ab-6892-4516-9b73-61196f4e2e03?api-version=2021-05-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54c186a4-8951-4fe5-8bf3-58f7d883c147?api-version=2021-05-01 cache-control: - no-cache content-length: @@ -1286,7 +1195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:07 GMT + - Mon, 21 Feb 2022 03:33:32 GMT expires: - '-1' pragma: @@ -1303,9 +1212,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 5b1a059e-e645-4759-aa03-840ed98442dd + - d0243453-90aa-40f5-af03-385df8b74217 x-ms-ratelimit-remaining-subscription-writes: - - '1191' + - '1199' status: code: 200 message: OK @@ -1323,9 +1232,9 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11f1a0ab-6892-4516-9b73-61196f4e2e03?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54c186a4-8951-4fe5-8bf3-58f7d883c147?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"InProgress\"\r\n}" @@ -1337,7 +1246,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:11 GMT + - Mon, 21 Feb 2022 03:33:35 GMT expires: - '-1' pragma: @@ -1354,7 +1263,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - adc77de2-7ef3-4704-b37b-af3d31868c2f + - 0f01528c-a785-4e96-ac5a-42c1e0938c95 status: code: 200 message: OK @@ -1372,9 +1281,9 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/11f1a0ab-6892-4516-9b73-61196f4e2e03?api-version=2021-05-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/westus/operations/54c186a4-8951-4fe5-8bf3-58f7d883c147?api-version=2021-05-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -1386,7 +1295,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:22 GMT + - Mon, 21 Feb 2022 03:33:47 GMT expires: - '-1' pragma: @@ -1403,7 +1312,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 345c9466-a508-4f2c-b677-8e7ada790c8f + - e007d9c0-e73e-4862-bea2-bfc85b9c6cd4 status: code: 200 message: OK @@ -1421,19 +1330,19 @@ interactions: ParameterSetName: - -g --lb-name -n --probe-name --protocol --frontend-port --backend-port User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB?api-version=2021-05-01 response: body: string: "{\r\n \"name\": \"vmss1LB\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n \"type\": + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \"type\": \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"westus\",\r\n \"tags\": {},\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"resourceGuid\": \"ec6dc0fc-7d0b-4d57-acca-40151e9bdbf9\",\r\n \"frontendIPConfigurations\": + \ \"resourceGuid\": \"8fe4bea7-a0ca-412a-9a8a-49164bdfc0bc\",\r\n \"frontendIPConfigurations\": [\r\n {\r\n \"name\": \"loadBalancerFrontEnd\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/frontendIPConfigurations\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"privateIPAllocationMethod\": \"Dynamic\",\r\n \"publicIPAddress\": @@ -1441,23 +1350,23 @@ interactions: \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\"\r\n \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\"\r\n \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"\r\n \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": [\r\n {\r\n \"name\": \"vmss1LBBEPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"backendIPConfigurations\": [\r\n {\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n - \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/backendAddressPools\"\r\n \ }\r\n ],\r\n \"loadBalancingRules\": [\r\n {\r\n \"name\": \"lbrule\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/loadBalancingRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -1473,26 +1382,26 @@ interactions: \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n \ \"name\": \"probe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"protocol\": \"Tcp\",\r\n \"port\": 80,\r\n \"intervalInSeconds\": 15,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/loadBalancingRules/lbrule\"\r\n \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n \ }\r\n ],\r\n \"inboundNatRules\": [\r\n {\r\n \"name\": - \"vmss1LBNatPool.1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.1\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \"vmss1LBNatPool.0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.0\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n - \ },\r\n \"frontendPort\": 50001,\r\n \"backendPort\": + \ },\r\n \"frontendPort\": 50000,\r\n \"backendPort\": 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1LBNatPool.3\",\r\n \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatRules/vmss1LBNatPool.3\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"type\": \"Microsoft.Network/loadBalancers/inboundNatRules\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/frontendIPConfigurations/loadBalancerFrontEnd\"\r\n @@ -1500,10 +1409,10 @@ interactions: 22,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": 4,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": - false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic/ipConfigurations/vmss18861IPConfig\"\r\n + false,\r\n \"backendIPConfiguration\": {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic/ipConfigurations/vmss105fdIPConfig\"\r\n \ }\r\n }\r\n }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n \"name\": \"vmss1LBNatPool\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\",\r\n - \ \"etag\": \"W/\\\"51fe7100-8870-4827-9ee9-a177403169cc\\\"\",\r\n + \ \"etag\": \"W/\\\"65b89f0e-43bc-4904-a3ea-f063be819546\\\"\",\r\n \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \ \"frontendPortRangeStart\": 50000,\r\n \"frontendPortRangeEnd\": 50119,\r\n \"backendPort\": 22,\r\n \"protocol\": \"Tcp\",\r\n @@ -1522,9 +1431,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:23 GMT + - Mon, 21 Feb 2022 03:33:47 GMT etag: - - W/"51fe7100-8870-4827-9ee9-a177403169cc" + - W/"65b89f0e-43bc-4904-a3ea-f063be819546" expires: - '-1' pragma: @@ -1541,7 +1450,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 1d836c9f-849d-444a-8114-239f9b74e737 + - 8e737476-f1cc-4ba0-8457-7d8899f55c7b status: code: 200 message: OK @@ -1559,7 +1468,7 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -1573,7 +1482,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1587,10 +1496,10 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -1600,7 +1509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:23 GMT + - Mon, 21 Feb 2022 03:33:47 GMT expires: - '-1' pragma: @@ -1617,7 +1526,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;385,Microsoft.Compute/GetVMScaleSet30Min;2515 + - Microsoft.Compute/GetVMScaleSet3Min;390,Microsoft.Compute/GetVMScaleSet30Min;2590 status: code: 200 message: OK @@ -1626,7 +1535,7 @@ interactions: "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss18861", "adminUsername": + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss105fd", "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]}, @@ -1634,9 +1543,9 @@ interactions: "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"healthProbe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe"}, - "networkInterfaceConfigurations": [{"name": "vmss18861Nic", "properties": {"primary": + "networkInterfaceConfigurations": [{"name": "vmss105fdNic", "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": {"dnsServers": []}, - "ipConfigurations": [{"name": "vmss18861IPConfig", "properties": {"subnet": + "ipConfigurations": [{"name": "vmss105fdIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], @@ -1659,7 +1568,7 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -1673,7 +1582,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1687,16 +1596,16 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/797e54df-256c-4d1e-860e-db23b4469a99?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a56de8ff-2b87-4a56-a29b-00c6e6e6089a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 cache-control: - no-cache content-length: @@ -1704,7 +1613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:30 GMT + - Mon, 21 Feb 2022 03:33:56 GMT expires: - '-1' pragma: @@ -1721,9 +1630,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;291,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;58,Microsoft.Compute/CreateVMScaleSet30Min;297,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1182' + - '1198' x-ms-request-charge: - '0' status: @@ -1743,23 +1652,23 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/797e54df-256c-4d1e-860e-db23b4469a99?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/a56de8ff-2b87-4a56-a29b-00c6e6e6089a?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 response: body: - string: "{\r\n \"startTime\": \"2022-02-10T08:47:28.5115356+00:00\",\r\n \"endTime\": - \"2022-02-10T08:47:28.6677975+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"797e54df-256c-4d1e-860e-db23b4469a99\"\r\n}" + string: "{\r\n \"startTime\": \"2022-02-21T03:33:53.794187+00:00\",\r\n \"endTime\": + \"2022-02-21T03:33:53.950484+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"a56de8ff-2b87-4a56-a29b-00c6e6e6089a\"\r\n}" headers: cache-control: - no-cache content-length: - - '184' + - '182' content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:41 GMT + - Mon, 21 Feb 2022 03:34:06 GMT expires: - '-1' pragma: @@ -1776,7 +1685,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29850 + - Microsoft.Compute/GetOperation3Min;14989,Microsoft.Compute/GetOperation30Min;29988 status: code: 200 message: OK @@ -1794,7 +1703,7 @@ interactions: ParameterSetName: - -g -n --set User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -1808,7 +1717,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1822,10 +1731,10 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -1835,7 +1744,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:41 GMT + - Mon, 21 Feb 2022 03:34:06 GMT expires: - '-1' pragma: @@ -1852,7 +1761,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;384,Microsoft.Compute/GetVMScaleSet30Min;2511 + - Microsoft.Compute/GetVMScaleSet3Min;390,Microsoft.Compute/GetVMScaleSet30Min;2587 status: code: 200 message: OK @@ -1870,31 +1779,31 @@ interactions: ParameterSetName: - -g -n --query User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines?api-version=2021-11-01 response: body: - string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_1\",\r\n \"id\": - \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1\",\r\n + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"vmss1_0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": - \"1\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": + \"0\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"73b10905-589a-46b1-82a6-db4b7f7fef7a\",\r\n \"hardwareProfile\": + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"9c4b1183-c988-4317-909a-75d4135e4120\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \ \"exactVersion\": \"18.04.202201180\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_1_OsDisk_1_c69e8a4fb04a44d5b9f0779971625f5d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_0_OsDisk_1_57e2db357b914e0c914aa7b7942f9022\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/disks/vmss1_vmss1_1_OsDisk_1_c69e8a4fb04a44d5b9f0779971625f5d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/disks/vmss1_vmss1_0_OsDisk_1_57e2db357b914e0c914aa7b7942f9022\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss18861000001\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd000000\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1902,28 +1811,28 @@ interactions: \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/1/networkInterfaces/vmss18861Nic\"}]},\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/0/networkInterfaces/vmss105fdNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-02-10T08:45:10.0374659+00:00\"\r\n }\r\n },\r\n {\r\n \"name\": + \"2022-02-21T03:32:24.8532703+00:00\"\r\n }\r\n },\r\n {\r\n \"name\": \"vmss1_3\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3\",\r\n \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets/virtualMachines\",\r\n \ \"location\": \"westus\",\r\n \"tags\": {},\r\n \"instanceId\": \"3\",\r\n \"sku\": {\r\n \"name\": \"Standard_DS1_v2\",\r\n \"tier\": \"Standard\"\r\n },\r\n \"properties\": {\r\n \"latestModelApplied\": false,\r\n \"modelDefinitionApplied\": \"VirtualMachineScaleSet\",\r\n - \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n - \ \"vmId\": \"fc7f0424-0ff1-44a6-a2a4-a92691db68e7\",\r\n \"hardwareProfile\": + \ \"networkProfileConfiguration\": {\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]},\r\n + \ \"vmId\": \"3cf4b7a3-8e81-4ab6-978a-249cc7e6bbf2\",\r\n \"hardwareProfile\": {},\r\n \"storageProfile\": {\r\n \"imageReference\": {\r\n \ \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\",\r\n \ \"exactVersion\": \"18.04.202201180\"\r\n },\r\n \"osDisk\": - {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_3_OsDisk_1_fedae58ff07843668716749bc06f3e0d\",\r\n + {\r\n \"osType\": \"Linux\",\r\n \"name\": \"vmss1_vmss1_3_OsDisk_1_413415e665b6441fb77fed8c185c01af\",\r\n \ \"createOption\": \"FromImage\",\r\n \"caching\": \"ReadWrite\",\r\n \ \"managedDisk\": {\r\n \"storageAccountType\": \"Premium_LRS\",\r\n - \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_fedae58ff07843668716749bc06f3e0d\"\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/disks/vmss1_vmss1_3_OsDisk_1_413415e665b6441fb77fed8c185c01af\"\r\n \ },\r\n \"diskSizeGB\": 30\r\n },\r\n \"dataDisks\": []\r\n },\r\n \"osProfile\": {\r\n \"computerName\": - \"vmss18861000003\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd000003\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -1931,9 +1840,9 @@ interactions: \ }\r\n ]\r\n },\r\n \"provisionVMAgent\": true\r\n },\r\n \"secrets\": [],\r\n \"allowExtensionOperations\": true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n - \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss18861Nic\"}]},\r\n + \ \"networkProfile\": {\"networkInterfaces\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/virtualMachines/3/networkInterfaces/vmss105fdNic\"}]},\r\n \ \"provisioningState\": \"Succeeded\",\r\n \"timeCreated\": - \"2022-02-10T08:45:10.0374659+00:00\"\r\n }\r\n }\r\n ]\r\n}" + \"2022-02-21T03:32:24.8532703+00:00\"\r\n }\r\n }\r\n ]\r\n}" headers: cache-control: - no-cache @@ -1942,7 +1851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:47:41 GMT + - Mon, 21 Feb 2022 03:34:07 GMT expires: - '-1' pragma: @@ -1959,14 +1868,14 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/HighCostGetVMScaleSet3Min;177,Microsoft.Compute/HighCostGetVMScaleSet30Min;886,Microsoft.Compute/VMScaleSetVMViews3Min;4998 + - Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;898,Microsoft.Compute/VMScaleSetVMViews3Min;4998 x-ms-request-charge: - '2' status: code: 200 message: OK - request: - body: '{"instanceIds": ["1", "3"]}' + body: '{"instanceIds": ["0", "3"]}' headers: Accept: - application/json @@ -1983,7 +1892,7 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1/manualupgrade?api-version=2021-11-01 response: @@ -1991,17 +1900,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c2c9e5-a968-4fc5-b69c-6ed2cac9b5b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3cc9dea0-c366-4fd3-97a1-3a0d99092c13?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 cache-control: - no-cache content-length: - '0' date: - - Thu, 10 Feb 2022 08:47:43 GMT + - Mon, 21 Feb 2022 03:34:08 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c2c9e5-a968-4fc5-b69c-6ed2cac9b5b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2021-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3cc9dea0-c366-4fd3-97a1-3a0d99092c13?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2021-11-01 pragma: - no-cache server: @@ -2012,9 +1921,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/VMScaleSetActions3Min;237,Microsoft.Compute/VMScaleSetActions30Min;1196,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1184,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/VMScaleSetActions3Min;239,Microsoft.Compute/VMScaleSetActions30Min;1199,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;1188,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' x-ms-request-charge: - '2' status: @@ -2034,14 +1943,14 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c2c9e5-a968-4fc5-b69c-6ed2cac9b5b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3cc9dea0-c366-4fd3-97a1-3a0d99092c13?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 response: body: - string: "{\r\n \"startTime\": \"2022-02-10T08:47:43.5746789+00:00\",\r\n \"endTime\": - \"2022-02-10T08:47:51.9812219+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"70c2c9e5-a968-4fc5-b69c-6ed2cac9b5b7\"\r\n}" + string: "{\r\n \"startTime\": \"2022-02-21T03:34:08.9354258+00:00\",\r\n \"endTime\": + \"2022-02-21T03:34:17.7638672+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"3cc9dea0-c366-4fd3-97a1-3a0d99092c13\"\r\n}" headers: cache-control: - no-cache @@ -2050,7 +1959,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:48:14 GMT + - Mon, 21 Feb 2022 03:34:38 GMT expires: - '-1' pragma: @@ -2067,7 +1976,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14975,Microsoft.Compute/GetOperation30Min;29846 + - Microsoft.Compute/GetOperation3Min;14984,Microsoft.Compute/GetOperation30Min;29983 status: code: 200 message: OK @@ -2085,9 +1994,9 @@ interactions: ParameterSetName: - -g -n --instance-ids User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/70c2c9e5-a968-4fc5-b69c-6ed2cac9b5b7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2021-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/3cc9dea0-c366-4fd3-97a1-3a0d99092c13?p=571046f6-b640-41c1-86f7-f9f044b5adf9&monitor=true&api-version=2021-11-01 response: body: string: '' @@ -2097,7 +2006,7 @@ interactions: content-length: - '0' date: - - Thu, 10 Feb 2022 08:48:14 GMT + - Mon, 21 Feb 2022 03:34:38 GMT expires: - '-1' pragma: @@ -2110,7 +2019,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29845 + - Microsoft.Compute/GetOperation3Min;14983,Microsoft.Compute/GetOperation30Min;29982 status: code: 200 message: OK @@ -2126,9 +2035,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --enable-automatic-repairs --automatic-repairs-grace-period + - -g -n --enable-automatic-repairs --automatic-repairs-grace-period --automatic-repairs-action User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -2142,7 +2051,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -2156,10 +2065,10 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -2169,7 +2078,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:48:14 GMT + - Mon, 21 Feb 2022 03:34:40 GMT expires: - '-1' pragma: @@ -2186,7 +2095,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;380,Microsoft.Compute/GetVMScaleSet30Min;2507 + - Microsoft.Compute/GetVMScaleSet3Min;385,Microsoft.Compute/GetVMScaleSet30Min;2582 status: code: 200 message: OK @@ -2195,17 +2104,18 @@ interactions: "Standard", "capacity": 2}, "properties": {"upgradePolicy": {"mode": "Manual", "rollingUpgradePolicy": {"maxBatchInstancePercent": 20, "maxUnhealthyInstancePercent": 20, "maxUnhealthyUpgradedInstancePercent": 20, "pauseTimeBetweenBatches": "PT0S"}}, - "automaticRepairsPolicy": {"enabled": true, "gracePeriod": "PT30M"}, "virtualMachineProfile": - {"osProfile": {"computerNamePrefix": "vmss18861", "adminUsername": "azureuser", - "linuxConfiguration": {"disablePasswordAuthentication": true, "ssh": {"publicKeys": - [{"path": "/home/azureuser/.ssh/authorized_keys", "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]}, + "automaticRepairsPolicy": {"enabled": true, "gracePeriod": "PT30M", "repairAction": + "Restart"}, "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "vmss105fd", + "adminUsername": "azureuser", "linuxConfiguration": {"disablePasswordAuthentication": + true, "ssh": {"publicKeys": [{"path": "/home/azureuser/.ssh/authorized_keys", + "keyData": "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQDL2PtV5sp++a43U/dRJ2Fyjso9qDFNbWEnbYk7mA4CfXy0gvxm65oYVd90JysNmGBF/89hIvCTN3ul4aEIuPkzywozRbdyWiJngSd/7OrNBJzpQQSjsGXwoVNDRAJSzlvuQVUR2vwBHeN2xMIvufSvzO3LGI3xcSIWIYlSvU9urnV+Pefd4T6x/OXgTpE02AgMWOspdZTzg0ZKsSU3sG5nYSNoq+8qrHQSXLbLLdWzz5lYKe8p64fQC/xhXrNa3/Nw5vy8YGsyqGueM/Rj6gCI+ivgBlQg908Aa50yQLvwsMLIKxhgPlj73Am8zm27PS3DKVjkr0nTjbEp/3FzZnyB"}]}, "provisionVMAgent": true}, "secrets": [], "allowExtensionOperations": true}, "storageProfile": {"osDisk": {"caching": "ReadWrite", "createOption": "FromImage", "diskSizeGB": 30, "osType": "Linux", "managedDisk": {"storageAccountType": "Premium_LRS"}}}, "networkProfile": {"healthProbe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe"}, - "networkInterfaceConfigurations": [{"name": "vmss18861Nic", "properties": {"primary": + "networkInterfaceConfigurations": [{"name": "vmss105fdNic", "properties": {"primary": true, "enableAcceleratedNetworking": false, "dnsSettings": {"dnsServers": []}, - "ipConfigurations": [{"name": "vmss18861IPConfig", "properties": {"subnet": + "ipConfigurations": [{"name": "vmss105fdIPConfig", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet"}, "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool"}], @@ -2222,13 +2132,13 @@ interactions: Connection: - keep-alive Content-Length: - - '2676' + - '2703' Content-Type: - application/json ParameterSetName: - - -g -n --enable-automatic-repairs --automatic-repairs-grace-period + - -g -n --enable-automatic-repairs --automatic-repairs-grace-period --automatic-repairs-action User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -2242,7 +2152,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -2256,18 +2166,18 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"automaticRepairsPolicy\": + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"automaticRepairsPolicy\": {\r\n \"enabled\": true,\r\n \"gracePeriod\": \"PT30M\",\r\n \"repairAction\": - \"Replace\"\r\n },\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"Restart\"\r\n },\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6f5aadc5-e972-4721-ad42-1f4fdd3ac210?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b5006f9d-03ba-4f80-8857-b0b5df489cc7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 cache-control: - no-cache content-length: @@ -2275,7 +2185,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:48:22 GMT + - Mon, 21 Feb 2022 03:34:47 GMT expires: - '-1' pragma: @@ -2292,9 +2202,9 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;289,Microsoft.Compute/VmssQueuedVMOperations;0 + - Microsoft.Compute/CreateVMScaleSet3Min;57,Microsoft.Compute/CreateVMScaleSet30Min;296,Microsoft.Compute/VmssQueuedVMOperations;0 x-ms-ratelimit-remaining-subscription-writes: - - '1184' + - '1198' x-ms-request-charge: - '0' status: @@ -2312,16 +2222,16 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --enable-automatic-repairs --automatic-repairs-grace-period + - -g -n --enable-automatic-repairs --automatic-repairs-grace-period --automatic-repairs-action User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/6f5aadc5-e972-4721-ad42-1f4fdd3ac210?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/westus/operations/b5006f9d-03ba-4f80-8857-b0b5df489cc7?p=571046f6-b640-41c1-86f7-f9f044b5adf9&api-version=2021-11-01 response: body: - string: "{\r\n \"startTime\": \"2022-02-10T08:48:20.2323588+00:00\",\r\n \"endTime\": - \"2022-02-10T08:48:20.3729936+00:00\",\r\n \"status\": \"Succeeded\",\r\n - \ \"name\": \"6f5aadc5-e972-4721-ad42-1f4fdd3ac210\"\r\n}" + string: "{\r\n \"startTime\": \"2022-02-21T03:34:45.0461758+00:00\",\r\n \"endTime\": + \"2022-02-21T03:34:45.1869584+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"b5006f9d-03ba-4f80-8857-b0b5df489cc7\"\r\n}" headers: cache-control: - no-cache @@ -2330,7 +2240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:48:34 GMT + - Mon, 21 Feb 2022 03:34:58 GMT expires: - '-1' pragma: @@ -2347,7 +2257,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29843 + - Microsoft.Compute/GetOperation3Min;14982,Microsoft.Compute/GetOperation30Min;29981 status: code: 200 message: OK @@ -2363,9 +2273,9 @@ interactions: Connection: - keep-alive ParameterSetName: - - -g -n --enable-automatic-repairs --automatic-repairs-grace-period + - -g -n --enable-automatic-repairs --automatic-repairs-grace-period --automatic-repairs-action User-Agent: - - AZURECLI/2.33.0 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) + - AZURECLI/2.33.1 azsdk-python-azure-mgmt-compute/25.0.0 Python/3.8.9 (Windows-10-10.0.22000-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Compute/virtualMachineScaleSets/vmss1?api-version=2021-11-01 response: @@ -2379,7 +2289,7 @@ interactions: 20,\r\n \"maxUnhealthyInstancePercent\": 20,\r\n \"maxUnhealthyUpgradedInstancePercent\": 20,\r\n \"pauseTimeBetweenBatches\": \"PT0S\"\r\n }\r\n },\r\n \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": - \"vmss18861\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": + \"vmss105fd\",\r\n \"adminUsername\": \"azureuser\",\r\n \"linuxConfiguration\": {\r\n \"disablePasswordAuthentication\": true,\r\n \"ssh\": {\r\n \"publicKeys\": [\r\n {\r\n \"path\": \"/home/azureuser/.ssh/authorized_keys\",\r\n \"keyData\": @@ -2393,12 +2303,12 @@ interactions: \ \"diskSizeGB\": 30\r\n },\r\n \"imageReference\": {\r\n \"publisher\": \"Canonical\",\r\n \"offer\": \"UbuntuServer\",\r\n \ \"sku\": \"18.04-LTS\",\r\n \"version\": \"latest\"\r\n - \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss18861Nic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss18861IPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n + \ }\r\n },\r\n \"networkProfile\": {\"healthProbe\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/probes/probe\"},\"networkInterfaceConfigurations\":[{\"name\":\"vmss105fdNic\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"vmss105fdIPConfig\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/virtualNetworks/vmss1VNET/subnets/vmss1Subnet\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/backendAddressPools/vmss1LBBEPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/cli_test_vmss_update_automatic_repairs_with_health_probe_000001/providers/Microsoft.Network/loadBalancers/vmss1LB/inboundNatPools/vmss1LBNatPool\"}]}}]}}]}\r\n \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": true,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": - \"184c1aee-4f57-43b3-b9af-4f000fde9edf\",\r\n \"automaticRepairsPolicy\": + \"97dd94cc-5a26-45c0-a73f-42b4139472a3\",\r\n \"automaticRepairsPolicy\": {\r\n \"enabled\": true,\r\n \"gracePeriod\": \"PT30M\",\r\n \"repairAction\": - \"Replace\"\r\n },\r\n \"timeCreated\": \"2022-02-10T08:45:09.8811931+00:00\"\r\n + \"Restart\"\r\n },\r\n \"timeCreated\": \"2022-02-21T03:32:24.7282551+00:00\"\r\n \ }\r\n}" headers: cache-control: @@ -2408,7 +2318,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Thu, 10 Feb 2022 08:48:34 GMT + - Mon, 21 Feb 2022 03:34:58 GMT expires: - '-1' pragma: @@ -2425,7 +2335,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-resource: - - Microsoft.Compute/GetVMScaleSet3Min;378,Microsoft.Compute/GetVMScaleSet30Min;2502 + - Microsoft.Compute/GetVMScaleSet3Min;382,Microsoft.Compute/GetVMScaleSet30Min;2579 status: code: 200 message: OK diff --git a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py index 5b242a3e88e..cc9d906ab8a 100644 --- a/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py +++ b/src/azure-cli/azure/cli/command_modules/vm/tests/latest/test_vm_commands.py @@ -6236,11 +6236,11 @@ def test_vmss_create_automatic_repairs_with_health_probe(self, resource_group): }) # Test raise error if not provide health probe or load balance - with self.assertRaises(CLIError): + with self.assertRaises(ArgumentUsageError): self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --automatic-repairs-grace-period 30 --admin-username azureuser') - with self.assertRaises(CLIError): + with self.assertRaises(ArgumentUsageError): self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --load-balancer {lb} --automatic-repairs-grace-period 30 --admin-username azureuser') - with self.assertRaises(CLIError): + with self.assertRaises(ArgumentUsageError): self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --health-probe {probe} --automatic-repairs-grace-period 30 --admin-username azureuser') # Prepare health probe @@ -6248,10 +6248,11 @@ def test_vmss_create_automatic_repairs_with_health_probe(self, resource_group): self.cmd('network lb probe create -g {rg} --lb-name {lb} -n {probe} --protocol Tcp --port 80') self.cmd('network lb rule create -g {rg} --lb-name {lb} -n {lbrule} --probe-name {probe} --protocol Tcp --frontend-port 80 --backend-port 80') # Test enable automatic repairs with a health probe when create vmss - self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --load-balancer {lb} --health-probe {probe} --automatic-repairs-grace-period 30 --admin-username azureuser', + self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --load-balancer {lb} --health-probe {probe} --automatic-repairs-grace-period 30 --automatic-repairs-action restart --admin-username azureuser', checks=[ self.check('vmss.automaticRepairsPolicy.enabled', True), - self.check('vmss.automaticRepairsPolicy.gracePeriod', 'PT30M') + self.check('vmss.automaticRepairsPolicy.gracePeriod', 'PT30M'), + self.check('vmss.automaticRepairsPolicy.repairAction', 'Restart') ]) @ResourceGroupPreparer(name_prefix='cli_test_vmss_update_automatic_repairs_with_health_probe_') @@ -6266,10 +6267,10 @@ def test_vmss_update_automatic_repairs_with_health_probe(self, resource_group): self.cmd('vmss create -g {rg} -n {vmss} --image UbuntuLTS --admin-username azureuser') # Validate automatic repairs parameters - with self.assertRaises(CLIError): + with self.assertRaises(ArgumentUsageError): self.cmd( 'vmss update -g {rg} -n {vmss} --enable-automatic-repairs false --automatic-repairs-grace-period 30') - with self.assertRaises(CLIError): + with self.assertRaises(ArgumentUsageError): self.cmd('vmss update -g {rg} -n {vmss} --enable-automatic-repairs true') # Prepare health probe @@ -6289,10 +6290,11 @@ def test_vmss_update_automatic_repairs_with_health_probe(self, resource_group): self.cmd('vmss list-instances -g {rg} -n {vmss} --query "[].instanceId"').get_output_in_json() ) self.cmd('vmss update-instances -g {rg} -n {vmss} --instance-ids {instance_ids}') - self.cmd('vmss update -g {rg} -n {vmss} --enable-automatic-repairs true --automatic-repairs-grace-period 30', + self.cmd('vmss update -g {rg} -n {vmss} --enable-automatic-repairs true --automatic-repairs-grace-period 30 --automatic-repairs-action restart', checks=[ self.check('automaticRepairsPolicy.enabled', True), - self.check('automaticRepairsPolicy.gracePeriod', 'PT30M') + self.check('automaticRepairsPolicy.gracePeriod', 'PT30M'), + self.check('automaticRepairsPolicy.repairAction', 'Restart') ]) @ResourceGroupPreparer(name_prefix='cli_test_vmss_update_automatic_repairs_with_health_extension_')