diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py b/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py index 681dbeaab97..de1e70707bd 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/custom.py @@ -23,6 +23,7 @@ from azure.cli.core.profiles import ResourceType, get_sdk from azure.cli.command_modules.servicefabric._arm_deployment_utils import validate_and_deploy_arm_template from azure.cli.command_modules.servicefabric._sf_utils import _get_resource_group_by_name, _create_resource_group_name +from azure.core.exceptions import ResourceNotFoundError from azure.mgmt.servicefabric.models import (ClusterUpdateParameters, ClientCertificateThumbprint, @@ -302,7 +303,8 @@ def add_app_cert(cmd, return client.get(resource_group_name, cluster_name) -def add_client_cert(client, +def add_client_cert(cmd, + client, resource_group_name, cluster_name, is_admin=False, @@ -312,6 +314,7 @@ def add_client_cert(client, admin_client_thumbprints=None, readonly_client_thumbprints=None, client_certificate_common_names=None): + cli_ctx = cmd.cli_ctx if thumbprint: if certificate_common_name or certificate_issuer_thumbprint or admin_client_thumbprints or readonly_client_thumbprints or client_certificate_common_names: raise CLIError( @@ -376,16 +379,19 @@ def _add_common_name(cluster, is_admin, certificate_common_name, certificate_iss patch_request = ClusterUpdateParameters(client_certificate_thumbprints=cluster.client_certificate_thumbprints, client_certificate_common_names=cluster.client_certificate_common_names) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) -def remove_client_cert(client, +def remove_client_cert(cmd, + client, resource_group_name, cluster_name, thumbprints=None, certificate_common_name=None, certificate_issuer_thumbprint=None, client_certificate_common_names=None): + cli_ctx = cmd.cli_ctx if thumbprints: if certificate_common_name or certificate_issuer_thumbprint or client_certificate_common_names: raise CLIError("--thumbprint can only specified alone") @@ -441,7 +447,8 @@ def _remove_common_name(cluster, certificate_common_name, certificate_issuer_thu patch_request = ClusterUpdateParameters(client_certificate_thumbprints=cluster.client_certificate_thumbprints, client_certificate_common_names=cluster.client_certificate_common_names) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) def add_cluster_node(cmd, client, resource_group_name, cluster_name, node_type, number_of_nodes_to_add): @@ -468,7 +475,8 @@ def add_cluster_node(cmd, client, resource_group_name, cluster_name, node_type, node_type.vm_instance_count = vmss.sku.capacity patch_request = ClusterUpdateParameters(node_types=cluster.node_types) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) def remove_cluster_node(cmd, client, resource_group_name, cluster_name, node_type, number_of_nodes_to_remove): @@ -500,13 +508,14 @@ def remove_cluster_node(cmd, client, resource_group_name, cluster_name, node_typ node_type.vm_instance_count = vmss.sku.capacity patch_request = ClusterUpdateParameters(node_types=cluster.node_types) - return client.update(resource_group_name, cluster_name, patch_request) + sfrp_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(sfrp_poll) def update_cluster_durability(cmd, client, resource_group_name, cluster_name, node_type, durability_level): cli_ctx = cmd.cli_ctx - # get cluster node type durablity + # get cluster node type durability cluster = client.get(resource_group_name, cluster_name) node_type_refs = [n for n in cluster.node_types if n.name.lower() == node_type.lower()] if not node_type_refs: @@ -517,7 +526,7 @@ def update_cluster_durability(cmd, client, resource_group_name, cluster_name, no # get vmss extension durability compute_client = compute_client_factory(cli_ctx) vmss = _get_cluster_vmss_by_node_type(compute_client, resource_group_name, cluster.cluster_id, node_type) - _get_sf_vm_extension(vmss) + fabric_ext_ref = _get_sf_vm_extension(vmss) if fabric_ext_ref is None: raise CLIError("Failed to find service fabric extension.") @@ -535,7 +544,7 @@ def update_cluster_durability(cmd, client, resource_group_name, cluster_name, no if curr_node_type_durability.lower() != durability_level.lower(): node_type_ref.durability_level = durability_level patch_request = ClusterUpdateParameters(node_types=cluster.node_types) - update_cluster_poll = client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) LongRunningOperation(cli_ctx)(update_cluster_poll) # update vmss sf extension durability @@ -548,7 +557,8 @@ def update_cluster_durability(cmd, client, resource_group_name, cluster_name, no return client.get(resource_group_name, cluster_name) -def update_cluster_upgrade_type(client, +def update_cluster_upgrade_type(cmd, + client, resource_group_name, cluster_name, upgrade_mode, @@ -557,6 +567,7 @@ def update_cluster_upgrade_type(client, raise CLIError( '--upgrade-mode can either be \'manual\' or \'automatic\'') + cli_ctx = cmd.cli_ctx cluster = client.get(resource_group_name, cluster_name) patch_request = ClusterUpdateParameters(node_types=cluster.node_types) if upgrade_mode.lower() == 'manual': @@ -566,16 +577,20 @@ def update_cluster_upgrade_type(client, patch_request.cluster_code_version = version patch_request.upgrade_mode = upgrade_mode - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) -def set_cluster_setting(client, +def set_cluster_setting(cmd, + client, resource_group_name, cluster_name, section=None, parameter=None, value=None, settings_section_description=None): + cli_ctx = cmd.cli_ctx + def _set(setting_dict, section, parameter, value): if section not in setting_dict: setting_dict[section] = {} @@ -601,15 +616,19 @@ def _set(setting_dict, section, parameter, value): setting_dict = _set(setting_dict, section, parameter, value) settings = _dict_to_fabric_settings(setting_dict) patch_request = ClusterUpdateParameters(fabric_settings=settings) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) -def remove_cluster_setting(client, +def remove_cluster_setting(cmd, + client, resource_group_name, cluster_name, section=None, parameter=None, settings_section_description=None): + cli_ctx = cmd.cli_ctx + def _remove(setting_dict, section, parameter): if section not in setting_dict: raise CLIError( @@ -636,7 +655,8 @@ def _remove(setting_dict, section, parameter): settings = _dict_to_fabric_settings(setting_dict) patch_request = ClusterUpdateParameters(fabric_settings=settings) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) def update_cluster_reliability_level(cmd, @@ -670,7 +690,8 @@ def update_cluster_reliability_level(cmd, node_type.vm_instance_count = vmss.sku.capacity patch_request = ClusterUpdateParameters( node_types=cluster.node_types, reliability_level=reliability_level) - return client.update(resource_group_name, cluster_name, patch_request) + update_cluster_poll = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cli_ctx)(update_cluster_poll) def add_cluster_node_type(cmd, @@ -692,8 +713,8 @@ def add_cluster_node_type(cmd, if any(n for n in cluster.node_types if n.name.lower() == node_type): raise CLIError("node type {} already exists in the cluster".format(node_type)) - _create_vmss(cmd, resource_group_name, cluster_name, cluster, node_type, durability_level, vm_password, vm_user_name, vm_sku, vm_tier, capacity) _add_node_type_to_sfrp(cmd, client, resource_group_name, cluster_name, cluster, node_type, capacity, durability_level) + _create_vmss(cmd, resource_group_name, cluster_name, cluster, node_type, durability_level, vm_password, vm_user_name, vm_sku, vm_tier, capacity) return client.get(resource_group_name, cluster_name) @@ -711,8 +732,8 @@ def _add_node_type_to_sfrp(cmd, client, resource_group_name, cluster_name, clust start_port=DEFAULT_EPHEMERAL_START, end_port=DEFAULT_EPHEMERAL_END))) patch_request = ClusterUpdateParameters(node_types=cluster.node_types) - poller = client.update(resource_group_name, cluster_name, patch_request) - LongRunningOperation(cmd.cli_ctx)(poller) + poller = client.begin_update(resource_group_name, cluster_name, patch_request) + return LongRunningOperation(cmd.cli_ctx)(poller) def _create_vmss(cmd, resource_group_name, cluster_name, cluster, node_type_name, durability_level, vm_password, vm_user_name, vm_sku, vm_tier, capacity): @@ -885,11 +906,13 @@ def create_vhd(cli_ctx, resource_group_name, cluster_name, node_type, location): def create_storage_account(cli_ctx, resource_group_name, storage_name, location): from azure.mgmt.storage.models import Sku, SkuName storage_client = storage_client_factory(cli_ctx) - LongRunningOperation(cli_ctx)(storage_client.storage_accounts.create(resource_group_name, - storage_name, - StorageAccountCreateParameters(sku=Sku(name=SkuName.standard_lrs), - kind='storage', - location=location))) + storage_poll = storage_client.storage_accounts.begin_create(resource_group_name, + storage_name, + StorageAccountCreateParameters(sku=Sku(name=SkuName.standard_lrs), + kind='storage', + location=location)) + + LongRunningOperation(cli_ctx)(storage_poll) acc_prop = storage_client.storage_accounts.get_properties( resource_group_name, storage_name) @@ -924,7 +947,7 @@ def create_storage_account(cli_ctx, resource_group_name, storage_name, location) diagnostics_ext = None fabric_ext = None - diagnostics_exts = [e for e in vmss_reference.virtual_machine_profile.extension_profile.extensions if e.type1.lower( + diagnostics_exts = [e for e in vmss_reference.virtual_machine_profile.extension_profile.extensions if e.type_properties_type.lower( ) == 'IaaSDiagnostics'.lower()] if any(diagnostics_exts): diagnostics_ext = diagnostics_exts[0] @@ -940,8 +963,8 @@ def create_storage_account(cli_ctx, resource_group_name, storage_name, location) json_data['storageAccountEndPoint'] = "https://core.windows.net/" diagnostics_ext.protected_settings = json_data - fabric_exts = [e for e in vmss_reference.virtual_machine_profile.extension_profile.extensions if e.type1.lower( - ) == SERVICE_FABRIC_WINDOWS_NODE_EXT_NAME or e.type1.lower() == SERVICE_FABRIC_LINUX_NODE_EXT_NAME] + fabric_exts = [e for e in vmss_reference.virtual_machine_profile.extension_profile.extensions if e.type_properties_type.lower( + ) == SERVICE_FABRIC_WINDOWS_NODE_EXT_NAME or e.type_properties_type.lower() == SERVICE_FABRIC_LINUX_NODE_EXT_NAME] if any(fabric_exts): fabric_ext = fabric_exts[0] @@ -1100,12 +1123,7 @@ def _create_certificate(cmd, else: if vault is None: logger.info("Creating key vault") - if cmd.supported_api_version(resource_type=ResourceType.MGMT_KEYVAULT, min_api='2018-02-14'): - vault = _create_keyvault( - cmd, cli_ctx, vault_resource_group_name, vault_name, location, enabled_for_deployment=True).result() - else: - vault = _create_keyvault( - cmd, cli_ctx, vault_resource_group_name, vault_name, location, enabled_for_deployment=True) + vault = _create_keyvault(cmd, cli_ctx, vault_resource_group_name, vault_name, location, enabled_for_deployment=True) logger.info("Wait for key vault ready") time.sleep(20) vault_uri = vault.properties.vault_uri @@ -1346,6 +1364,8 @@ def _safe_get_vault(cli_ctx, resource_group_name, vault_name): try: vault = key_vault_client.get(resource_group_name, vault_name) return vault + except ResourceNotFoundError: + return None except CloudError as ex: if ex.error.error == 'ResourceNotFound': return None @@ -1621,15 +1641,15 @@ def _create_keyvault(cmd, tenant_id, base_url=cli_ctx.cloud.endpoints.active_directory_graph_resource_id) subscription = profile.get_subscription() - VaultCreateOrUpdateParameters = cmd.get_models('VaultCreateOrUpdateParameters', resource_type=ResourceType.MGMT_KEYVAULT) - VaultProperties = cmd.get_models('VaultProperties', resource_type=ResourceType.MGMT_KEYVAULT) - KeyVaultSku = cmd.get_models('Sku', resource_type=ResourceType.MGMT_KEYVAULT) - AccessPolicyEntry = cmd.get_models('AccessPolicyEntry', resource_type=ResourceType.MGMT_KEYVAULT) - Permissions = cmd.get_models('Permissions', resource_type=ResourceType.MGMT_KEYVAULT) - CertificatePermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#CertificatePermissions') - KeyPermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#KeyPermissions') - SecretPermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#SecretPermissions') - KeyVaultSkuName = cmd.get_models('SkuName', resource_type=ResourceType.MGMT_KEYVAULT) + VaultCreateOrUpdateParameters = cmd.get_models('VaultCreateOrUpdateParameters', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') + VaultProperties = cmd.get_models('VaultProperties', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') + KeyVaultSku = cmd.get_models('Sku', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') + AccessPolicyEntry = cmd.get_models('AccessPolicyEntry', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') + Permissions = cmd.get_models('Permissions', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') + CertificatePermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#CertificatePermissions', operation_group='vaults') + KeyPermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#KeyPermissions', operation_group='vaults') + SecretPermissions = get_sdk(cli_ctx, ResourceType.MGMT_KEYVAULT, 'models#SecretPermissions', operation_group='vaults') + KeyVaultSkuName = cmd.get_models('SkuName', resource_type=ResourceType.MGMT_KEYVAULT, operation_group='vaults') if not sku: sku = KeyVaultSkuName.standard.value @@ -1678,6 +1698,7 @@ def _create_keyvault(cmd, access_policies = [AccessPolicyEntry(tenant_id=tenant_id, object_id=object_id, permissions=permissions)] + properties = VaultProperties(tenant_id=tenant_id, sku=KeyVaultSku(name=sku), access_policies=access_policies, @@ -1685,13 +1706,17 @@ def _create_keyvault(cmd, enabled_for_deployment=enabled_for_deployment, enabled_for_disk_encryption=enabled_for_disk_encryption, enabled_for_template_deployment=enabled_for_template_deployment) + parameters = VaultCreateOrUpdateParameters(location=location, tags=tags, properties=properties) - client = keyvault_client_factory(cli_ctx).vaults - return client.create_or_update(resource_group_name=resource_group_name, - vault_name=vault_name, - parameters=parameters) + + keyvault_client = keyvault_client_factory(cli_ctx) + kv_poll = keyvault_client.vaults.begin_create_or_update(resource_group_name=resource_group_name, + vault_name=vault_name, + parameters=parameters) + + return LongRunningOperation(cli_ctx)(kv_poll) # pylint: disable=inconsistent-return-statements diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_add_secondary_node_type_add_remove_node.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_add_secondary_node_type_add_remove_node.yaml new file mode 100644 index 00000000000..de1a9b7d827 --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_add_secondary_node_type_add_remove_node.yaml @@ -0,0 +1,17693 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-18T05:36:21Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '318' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:36:27 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-18T05:36:21Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '318' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:36:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.KeyVault/vaults/clitestrg000001'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '235' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:36:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-graphrbac/0.60.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2021-06-22T07:13:17Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2021-04-15T21:09:04Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:55:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2020-11-03T20:53:51Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2020-11-03T20:53:51Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-10-17T05:27:48Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Base + Platform-MARCUSFO-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo + Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER 2","lastDirSyncTime":"2022-05-06T17:25:39Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo + Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo + Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo + San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo + Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo + Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria + Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, + Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P98313","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"98313","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '19545' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Wed, 18 May 2022 05:36:29 GMT + duration: + - '1615797' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - wrNJAK2j1iJ45rqQM/pJ2yuscWKXXAaEuAH/hIIaR7o= + ocp-aad-session-key: + - Cy4jjwAgdlwZ4GnnL5fxrRZ1c3_-UpvGBBQAQJiRs5yY26dBbv7lCreaTXQZQ2UWwUzJVL3IdAqeKds6UtyufAZQR8J3JJI9QcMVtfeidNtHeSaVCEl5a29iSaxOaoGV.5bgOtUiu0Gou_A7IG_XgHdIwdK0V6NQQIoCc80Wiaa0 + pragma: + - no-cache + request-id: + - 10a439fe-df98-4508-a361-8185c3600ee9 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore"], "secrets": ["get", "list", "set", "delete", "backup", + "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", + "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", + "manageissuers", "recover"]}}], "enabledForDeployment": true, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enableRbacAuthorization": false, "publicNetworkAccess": + "enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '784' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001","name":"clitestrg000001","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"systemData":{"createdBy":"alsantam@microsoft.com","createdByType":"User","createdAt":"2022-05-18T05:36:32.84Z","lastModifiedBy":"alsantam@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-18T05:36:32.84Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"]}}],"enabledForDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":false,"vaultUri":"https://clitestrg000001.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '1275' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:36:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.372.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001","name":"clitestrg000001","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{},"systemData":{"createdBy":"alsantam@microsoft.com","createdByType":"User","createdAt":"2022-05-18T05:36:32.84Z","lastModifiedBy":"alsantam@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-18T05:36:32.84Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"]}}],"enabledForDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":false,"vaultUri":"https://clitestrg000001.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '1271' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.372.0 + status: + code: 200 + message: OK +- request: + body: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - 0 + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.0 + response: + body: + string: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing + a Bearer or PoP token."}}' + headers: + cache-control: + - no-cache + content-length: + - '97' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:24 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + resource="https://vault.azure.net" + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.174.229;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - southcentralus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 401 + message: Unauthorized +- request: + body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": + 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, + "x509_props": {"subject": "CN=sfrp-cli-000004", "key_usage": ["cRLSign", "dataEncipherment", + "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], "validity_months": + 12}, "lifetime_actions": [{"trigger": {"days_before_expiry": 90}, "action": + {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}, "attributes": {"enabled": + true}}, "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '540' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbDJ5dmpraGlwemJxc2M2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAuSZH0+ByxmSzgUnPjsMKr4tXMrhwRovnBM3oquTU+sDsx7cc8gy1ZN8eo540FHmxKmE2W/V+kHiZbdNyFg1qClmSJmBGlt/PK42/AF1n5+KLGiUeJ+1t6U4cv0N8zbcMHPcimDuPng+eBrU4CdYOFTOVFnKZbdGiym2rJFsgTocIkbfKIPsWY9kgZmfbakLCZE3BqZKjuUJxgmvZnzwNe6M1uRwdS9pg061GlwUFBTDhA3cf8k/PfOzgcvC3NS0zSQgX1U/P9mwuHEwPdwStKX0M/4dZ9dBRA2PnH2IqglEft140sR49KNtJS4cAdheX9EFJgpUmK/xQSyU75wwQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJPhuELxOnnBmhIhRD1bX54w0sUdR0MtFDW1nsgp75B4J/wAvJgH3P+nBrkwaQL6TzUSFTXfLSK8MroNlV4M7SdQWLrOtuhMykJqA/Effd5hrEacabGqmacQA2HkNFGjodZgXVrXQzIO6my2CpPk20TDdpy4SoeO4wR9cqGD5nd6CQsd9GLE9y77FTWKuqKfBU/w+9aNT7nT6mPyjnoq2a4SPgBikZuvhqcduobL+xHXXiJcpoiP/DZPog/2PRfJskvVEvWnwMlue6fa1k0KK58KkOldtBZJOJ2k+wMRek5L+JxnWVPjgVJNld6WDSp3agRrzADmRaZs1pKw1bvnY+s=","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"cb0505e95ab24505afc9d989d6334937"}' + headers: + cache-control: + - no-cache + content-length: + - '1318' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:26 GMT + expires: + - '-1' + location: + - https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0&request_id=cb0505e95ab24505afc9d989d6334937 + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.174.229;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - southcentralus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbDJ5dmpraGlwemJxc2M2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAuSZH0+ByxmSzgUnPjsMKr4tXMrhwRovnBM3oquTU+sDsx7cc8gy1ZN8eo540FHmxKmE2W/V+kHiZbdNyFg1qClmSJmBGlt/PK42/AF1n5+KLGiUeJ+1t6U4cv0N8zbcMHPcimDuPng+eBrU4CdYOFTOVFnKZbdGiym2rJFsgTocIkbfKIPsWY9kgZmfbakLCZE3BqZKjuUJxgmvZnzwNe6M1uRwdS9pg061GlwUFBTDhA3cf8k/PfOzgcvC3NS0zSQgX1U/P9mwuHEwPdwStKX0M/4dZ9dBRA2PnH2IqglEft140sR49KNtJS4cAdheX9EFJgpUmK/xQSyU75wwQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJPhuELxOnnBmhIhRD1bX54w0sUdR0MtFDW1nsgp75B4J/wAvJgH3P+nBrkwaQL6TzUSFTXfLSK8MroNlV4M7SdQWLrOtuhMykJqA/Effd5hrEacabGqmacQA2HkNFGjodZgXVrXQzIO6my2CpPk20TDdpy4SoeO4wR9cqGD5nd6CQsd9GLE9y77FTWKuqKfBU/w+9aNT7nT6mPyjnoq2a4SPgBikZuvhqcduobL+xHXXiJcpoiP/DZPog/2PRfJskvVEvWnwMlue6fa1k0KK58KkOldtBZJOJ2k+wMRek5L+JxnWVPjgVJNld6WDSp3agRrzADmRaZs1pKw1bvnY+s=","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"cb0505e95ab24505afc9d989d6334937"}' + headers: + cache-control: + - no-cache + content-length: + - '1318' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:27 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.174.229;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - southcentralus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbDJ5dmpraGlwemJxc2M2MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAvAuSZH0+ByxmSzgUnPjsMKr4tXMrhwRovnBM3oquTU+sDsx7cc8gy1ZN8eo540FHmxKmE2W/V+kHiZbdNyFg1qClmSJmBGlt/PK42/AF1n5+KLGiUeJ+1t6U4cv0N8zbcMHPcimDuPng+eBrU4CdYOFTOVFnKZbdGiym2rJFsgTocIkbfKIPsWY9kgZmfbakLCZE3BqZKjuUJxgmvZnzwNe6M1uRwdS9pg061GlwUFBTDhA3cf8k/PfOzgcvC3NS0zSQgX1U/P9mwuHEwPdwStKX0M/4dZ9dBRA2PnH2IqglEft140sR49KNtJS4cAdheX9EFJgpUmK/xQSyU75wwQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBAJPhuELxOnnBmhIhRD1bX54w0sUdR0MtFDW1nsgp75B4J/wAvJgH3P+nBrkwaQL6TzUSFTXfLSK8MroNlV4M7SdQWLrOtuhMykJqA/Effd5hrEacabGqmacQA2HkNFGjodZgXVrXQzIO6my2CpPk20TDdpy4SoeO4wR9cqGD5nd6CQsd9GLE9y77FTWKuqKfBU/w+9aNT7nT6mPyjnoq2a4SPgBikZuvhqcduobL+xHXXiJcpoiP/DZPog/2PRfJskvVEvWnwMlue6fa1k0KK58KkOldtBZJOJ2k+wMRek5L+JxnWVPjgVJNld6WDSp3agRrzADmRaZs1pKw1bvnY+s=","cancellation_requested":false,"status":"completed","target":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004","request_id":"cb0505e95ab24505afc9d989d6334937"}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.174.229;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - southcentralus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765","kid":"https://clitestrg000001.vault.azure.net/keys/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765","sid":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765","x5t":"UWe7JKOawUW-quP3BvfcDwGN6yA","cer":"MIIDTDCCAjSgAwIBAgIQEF2oIcBPQjSaZPAc3lnkvTANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDExhzZnJwLWNsaS1sMnl2amtoaXB6YnFzYzYwHhcNMjIwNTE4MDUyNzI4WhcNMjMwNTE4MDUzNzI4WjAjMSEwHwYDVQQDExhzZnJwLWNsaS1sMnl2amtoaXB6YnFzYzYwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC8C5JkfT4HLGZLOBSc+Owwqvi1cyuHBGi+cEzeiq5NT6wOzHtxzyDLVk3x6jnjQUebEqYTZb9X6QeJlt03IWDWoKWZImYEaW388rjb8AXWfn4osaJR4n7W3pThy/Q3zNtwwc9yKYO4+eD54GtTgJ1g4VM5UWcplt0aLKbaskWyBOhwiRt8og+xZj2SBmZ9tqQsJkTcGpkqO5QnGCa9mfPA17ozW5HB1L2mDTrUaXBQUFMOEDdx/yT8987OBy8Lc1LTNJCBfVT8/2bC4cTA93BK0pfQz/h1n10FEDY+cfYiqCUR+3XjSxHj0o20lLhwB2F5f0QUmClSYr/FBLJTvnDBAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIBvjAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBQQ8AWHWQnW9ddWZRGcKzWX/dFVgzAdBgNVHQ4EFgQUEPAFh1kJ1vXXVmURnCs1l/3RVYMwDQYJKoZIhvcNAQELBQADggEBAIwyPHPc+pCdXJ9LrM4G2H05l0jSftaozy4rR9u9dWrkTCjKabrKyUdZ5sKyMbtLfemiGqtn1VzSJjMALsDdQpFZoYR0ixvDyPhge6DiaUpiTPAB3n0gFT0Op/aJu3jjpQPSwMEemPqgFuNQFy5pw87GzN8dEUaX5jb/snrZFQhG54qBcJRFPTAAaj2y99dnVN2UmMfjZKH8a+1wQlmNGJi4hwExlebZ9BrLxLDF71er/Erh0SLX3ZRJNaWMmm4/DwMjFQ30gL/+X45z1hy17K1c5okATJgK9KvRMsE9KcUCb7Z7j1XxUuEnzQzp7udhx8IOo+jFEU9W08kkDTNKaTY=","attributes":{"enabled":true,"nbf":1652851648,"exp":1684388248,"created":1652852248,"updated":1652852248,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=sfrp-cli-000004","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1652852246,"updated":1652852246}},"pending":{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '2442' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:38 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.174.229;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - southcentralus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string", + "metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type": + "string", "metadata": {"description": "Name of your cluster - Between 3 and + 23 characters. Letters and numbers only"}}, "adminUserName": {"type": "string", + "metadata": {"description": "Remote desktop user Id"}}, "durabilityLevel": {"type": + "string", "metadata": {"description": "The durability level"}}, "reliabilityLevel": + {"type": "string", "metadata": {"description": "The reliability level"}}, "adminPassword": + {"type": "securestring", "metadata": {"description": "Remote desktop user password. + Must be a strong password"}}, "vmImagePublisher": {"type": "string", "defaultValue": + "MicrosoftWindowsServer", "metadata": {"description": "VM image Publisher"}}, + "vmImageOffer": {"type": "string", "defaultValue": "WindowsServer", "metadata": + {"description": "VM image offer"}}, "vmImageSku": {"type": "string", "metadata": + {"description": "VM image SKU"}}, "vmSku": {"type": "string", "metadata": {"description": + "VM SKU"}}, "vmImageVersion": {"type": "string", "defaultValue": "latest", "metadata": + {"description": "VM image version"}}, "loadBalancedAppPort1": {"type": "int", + "defaultValue": 80, "metadata": {"description": "Input endpoint1 for the application + to use. Replace it with what your application uses"}}, "loadBalancedAppPort2": + {"type": "int", "defaultValue": 8081, "metadata": {"description": "Input endpoint2 + for the application to use. Replace it with what your application uses"}}, "certificateStoreValue": + {"type": "string", "allowedValues": ["My"], "defaultValue": "My", "metadata": + {"description": "The store name where the cert will be deployed in the virtual + machine"}}, "certificateThumbprint": {"type": "string", "metadata": {"description": + "Certificate Thumbprint"}}, "sourceVaultValue": {"type": "string", "metadata": + {"description": "Resource Id of the key vault, is should be in the format of + /subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/"}}, "certificateUrlValue": {"type": "string", "metadata": {"description": + "Refers to the location URL in your key vault where the certificate was uploaded, + it is should be in the format of https://.vault.azure.net:443/secrets/"}}, "clusterProtectionLevel": {"type": "string", "allowedValues": + ["None", "Sign", "EncryptAndSign"], "defaultValue": "EncryptAndSign", "metadata": + {"description": "Protection level.Three values are allowed - EncryptAndSign, + Sign, None. It is best to keep the default of EncryptAndSign, unless you have + a need not to"}}, "storageAccountType": {"type": "string", "allowedValues": + ["Standard_LRS", "Standard_GRS"], "defaultValue": "Standard_LRS", "metadata": + {"description": "Replication option for the VM image storage account"}}, "supportLogStorageAccountType": + {"type": "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the support + log storage account"}}, "applicationDiagnosticsStorageAccountType": {"type": + "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the application + diagnostics storage account"}}, "nt0InstanceCount": {"type": "int", "metadata": + {"description": "Instance count for node type"}}}, "variables": {"computeLocation": + "[parameters(''clusterLocation'')]", "dnsName": "[parameters(''clusterName'')]", + "vmName": "vm", "publicIPAddressName": "PublicIP-VM", "publicIPAddressType": + "Dynamic", "vmStorageAccountContainerName": "vhds", "virtualNetworkName": "VNet", + "addressPrefix": "10.0.0.0/16", "nicName": "NIC", "lbName": "LoadBalancer", + "lbIPName": "PublicIP-LB-FE", "availSetName": "AvailabilitySet", "maxPercentUpgradeDomainDeltaUnhealthyNodes": + "100", "vnetID": "[resourceId(''Microsoft.Network/virtualNetworks'',variables(''virtualNetworkName''))]", + "overProvision": "false", "vmssApiVersion": "2017-03-30", "lbApiVersion": "2015-06-15", + "vNetApiVersion": "2015-06-15", "storageApiVersion": "2016-01-01", "publicIPApiVersion": + "2015-06-15", "nt0applicationStartPort": "20000", "nt0applicationEndPort": "30000", + "nt0ephemeralStartPort": "49152", "nt0ephemeralEndPort": "65534", "nt0fabricTcpGatewayPort": + "19000", "nt0fabricHttpGatewayPort": "19080", "subnet0Name": "Subnet-0", "subnet0Prefix": + "10.0.0.0/24", "subnet0Ref": "[concat(variables(''vnetID''),''/subnets/'',variables(''subnet0Name''))]", + "supportLogStorageAccountName": "[toLower( concat(''sflogs'', uniqueString(resourceGroup().id),''2''))]", + "applicationDiagnosticsStorageAccountName": "[toLower(concat(uniqueString(resourceGroup().id), + ''3'' ))]", "lbID0": "[resourceId(''Microsoft.Network/loadBalancers'',concat(''LB'',''-'', + parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", "lbIPConfig0": + "[concat(variables(''lbID0''),''/frontendIPConfigurations/LoadBalancerIPConfig'')]", + "lbPoolID0": "[concat(variables(''lbID0''),''/backendAddressPools/LoadBalancerBEAddressPool'')]", + "lbProbeID0": "[concat(variables(''lbID0''),''/probes/FabricGatewayProbe'')]", + "lbHttpProbeID0": "[concat(variables(''lbID0''),''/probes/FabricHttpGatewayProbe'')]", + "lbNatPoolID0": "[concat(variables(''lbID0''),''/inboundNatPools/LoadBalancerBEAddressNatPool'')]", + "vmNodeType0Name": "[toLower(concat(''NT1'', variables(''vmName'')))]", "vmNodeType0Size": + "[parameters(''vmSku'')]"}, "resources": [{"apiVersion": "[variables(''storageApiVersion'')]", + "type": "Microsoft.Storage/storageAccounts", "name": "[variables(''supportLogStorageAccountName'')]", + "location": "[variables(''computeLocation'')]", "dependsOn": [], "properties": + {}, "kind": "Storage", "sku": {"name": "[parameters(''supportLogStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''storageApiVersion'')]", "type": "Microsoft.Storage/storageAccounts", + "name": "[variables(''applicationDiagnosticsStorageAccountName'')]", "location": + "[variables(''computeLocation'')]", "dependsOn": [], "properties": {}, "kind": + "Storage", "sku": {"name": "[parameters(''applicationDiagnosticsStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''vNetApiVersion'')]", "type": "Microsoft.Network/virtualNetworks", + "name": "[variables(''virtualNetworkName'')]", "location": "[variables(''computeLocation'')]", + "properties": {"addressSpace": {"addressPrefixes": ["[variables(''addressPrefix'')]"]}, + "subnets": [{"name": "[variables(''subnet0Name'')]", "properties": {"addressPrefix": + "[variables(''subnet0Prefix'')]"}}]}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": "[variables(''publicIPApiVersion'')]", + "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(variables(''lbIPName''),''-'',''0'')]", + "location": "[variables(''computeLocation'')]", "properties": {"dnsSettings": + {"domainNameLabel": "[variables(''dnsName'')]"}, "publicIPAllocationMethod": + "Dynamic"}, "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''lbApiVersion'')]", "type": "Microsoft.Network/loadBalancers", + "name": "[concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name''))]", + "location": "[variables(''computeLocation'')]", "dependsOn": ["[concat(''Microsoft.Network/publicIPAddresses/'',concat(variables(''lbIPName''),''-'',''0''))]"], + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerIPConfig", + "properties": {"publicIPAddress": {"id": "[resourceId(''Microsoft.Network/publicIPAddresses'',concat(variables(''lbIPName''),''-'',''0''))]"}}}], + "backendAddressPools": [{"name": "LoadBalancerBEAddressPool", "properties": + {}}], "loadBalancingRules": [{"name": "LBRule", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricTcpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbProbeID0'')]"}, "protocol": "tcp"}}, {"name": + "LBHttpRule", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbHttpProbeID0'')]"}, "protocol": "tcp"}}, + {"name": "AppPortLBRule1", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[parameters(''loadBalancedAppPort1'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort1'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe1'')]"}, + "protocol": "tcp"}}, {"name": "AppPortLBRule2", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[parameters(''loadBalancedAppPort2'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort2'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe2'')]"}, + "protocol": "tcp"}}], "probes": [{"name": "FabricGatewayProbe", "properties": + {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricHttpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "AppPortProbe1", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[parameters(''loadBalancedAppPort1'')]", "protocol": + "tcp"}}, {"name": "AppPortProbe2", "properties": {"intervalInSeconds": 5, "numberOfProbes": + 2, "port": "[parameters(''loadBalancedAppPort2'')]", "protocol": "tcp"}}], "inboundNatPools": + [{"name": "LoadBalancerBEAddressNatPool", "properties": {"backendPort": "3389", + "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, "frontendPortRangeEnd": + "4500", "frontendPortRangeStart": "3389", "protocol": "tcp"}}]}, "tags": {"resourceType": + "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": + "[variables(''vmssApiVersion'')]", "type": "Microsoft.Compute/virtualMachineScaleSets", + "name": "[variables(''vmNodeType0Name'')]", "location": "[variables(''computeLocation'')]", + "dependsOn": ["[concat(''Microsoft.Network/virtualNetworks/'', variables(''virtualNetworkName''))]", + "[concat(''Microsoft.Network/loadBalancers/'', concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName''))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''applicationDiagnosticsStorageAccountName''))]"], + "properties": {"overprovision": "[variables(''overProvision'')]", "upgradePolicy": + {"mode": "Automatic"}, "virtualMachineProfile": {"extensionProfile": {"extensions": + [{"name": "[concat(''ServiceFabricNodeVmExt'',''_vmNodeType0Name'')]", "properties": + {"type": "ServiceFabricNode", "autoUpgradeMinorVersion": false, "protectedSettings": + {"StorageAccountKey1": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key1]", + "StorageAccountKey2": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key2]"}, + "publisher": "Microsoft.Azure.ServiceFabric", "settings": {"clusterEndpoint": + "[reference(parameters(''clusterName'')).clusterEndpoint]", "nodeTypeRef": "[variables(''vmNodeType0Name'')]", + "dataPath": "D:\\\\SvcFab", "durabilityLevel": "[parameters(''durabilityLevel'')]", + "nicPrefixOverride": "[variables(''subnet0Prefix'')]", "certificate": {"thumbprint": + "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}}, + "typeHandlerVersion": "1.1"}}, {"name": "[concat(''VMDiagnosticsVmExt'',''_vmNodeType0Name'')]", + "properties": {"type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true, "protectedSettings": + {"storageAccountName": "[variables(''applicationDiagnosticsStorageAccountName'')]", + "storageAccountKey": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''applicationDiagnosticsStorageAccountName'')),''2015-05-01-preview'').key1]", + "storageAccountEndPoint": "https://core.windows.net/"}, "publisher": "Microsoft.Azure.Diagnostics", + "settings": {"WadCfg": {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": + "50000", "EtwProviders": {"EtwEventSourceProviderConfiguration": [{"provider": + "Microsoft-ServiceFabric-Actors", "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableActorEventTable"}}, + {"provider": "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], + "EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", + "scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter": + "4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination": + "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(''applicationDiagnosticsStorageAccountName'')]"}, + "typeHandlerVersion": "1.5"}}]}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "[concat(variables(''nicName''), ''-0'')]", "properties": {"ipConfigurations": + [{"name": "[concat(variables(''nicName''),''-'',0)]", "properties": {"loadBalancerBackendAddressPools": + [{"id": "[variables(''lbPoolID0'')]"}], "loadBalancerInboundNatPools": [{"id": + "[variables(''lbNatPoolID0'')]"}], "subnet": {"id": "[variables(''subnet0Ref'')]"}}}], + "primary": true}}]}, "osProfile": {"adminPassword": "[parameters(''adminPassword'')]", + "adminUsername": "[parameters(''adminUsername'')]", "computernamePrefix": "[variables(''vmNodeType0Name'')]", + "secrets": [{"sourceVault": {"id": "[parameters(''sourceVaultValue'')]"}, "vaultCertificates": + [{"certificateStore": "[parameters(''certificateStoreValue'')]", "certificateUrl": + "[parameters(''certificateUrlValue'')]"}]}]}, "storageProfile": {"imageReference": + {"publisher": "[parameters(''vmImagePublisher'')]", "offer": "[parameters(''vmImageOffer'')]", + "sku": "[parameters(''vmImageSku'')]", "version": "[parameters(''vmImageVersion'')]"}, + "osDisk": {"caching": "ReadOnly", "createOption": "FromImage", "managedDisk": + {"storageAccountType": "[parameters(''storageAccountType'')]"}}}}}, "sku": {"name": + "[variables(''vmNodeType0Size'')]", "capacity": "[parameters(''nt0InstanceCount'')]", + "tier": "Standard"}, "tags": {"resourceType": "Service Fabric", "clusterName": + "[parameters(''clusterName'')]"}}, {"apiVersion": "2017-07-01-preview", "type": + "Microsoft.ServiceFabric/clusters", "name": "[parameters(''clusterName'')]", + "location": "[parameters(''clusterLocation'')]", "dependsOn": ["[concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName''))]"], "properties": {"certificate": + {"thumbprint": "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}, + "clientCertificateCommonNames": [], "clientCertificateThumbprints": [], "clusterState": + "Default", "diagnosticsStorageAccountConfig": {"blobEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.blob]", + "protectedAccountKeyName": "StorageAccountKey1", "queueEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.queue]", + "storageAccountName": "[variables(''supportLogStorageAccountName'')]", "tableEndpoint": + "[reference(concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName'')), + variables(''storageApiVersion'')).primaryEndpoints.table]"}, "fabricSettings": + [{"parameters": [{"name": "ClusterProtectionLevel", "value": "[parameters(''clusterProtectionLevel'')]"}], + "name": "Security"}], "addonFeatures": ["DnsService"], "managementEndpoint": + "[concat(''https://'',reference(concat(variables(''lbIPName''),''-'',''0'')).dnsSettings.fqdn,'':'',variables(''nt0fabricHttpGatewayPort''))]", + "nodeTypes": [{"name": "[variables(''vmNodeType0Name'')]", "applicationPorts": + {"endPort": "[variables(''nt0applicationEndPort'')]", "startPort": "[variables(''nt0applicationStartPort'')]"}, + "clientConnectionEndpointPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "durabilityLevel": "[parameters(''durabilityLevel'')]", "ephemeralPorts": {"endPort": + "[variables(''nt0ephemeralEndPort'')]", "startPort": "[variables(''nt0ephemeralStartPort'')]"}, + "httpGatewayEndpointPort": "[variables(''nt0fabricHttpGatewayPort'')]", "isPrimary": + true, "vmInstanceCount": "[parameters(''nt0InstanceCount'')]"}], "provisioningState": + "Default", "reliabilityLevel": "[parameters(''reliabilityLevel'')]", "upgradeMode": + "Automatic", "vmImage": "Windows"}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}], "outputs": {"clusterProperties": + {"value": "[reference(parameters(''clusterName''))]", "type": "object"}}}, "parameters": + {"clusterLocation": {"value": "southcentralus"}, "clusterName": {"value": "sfrp-cli-000004"}, + "adminUserName": {"value": "adminuser"}, "adminPassword": {"value": "Pass123!@#"}, + "vmImagePublisher": {"value": "MicrosoftWindowsServer"}, "vmSku": {"value": + "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": + {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": + {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": + {"value": "My"}, "certificateThumbprint": {"value": "5167BB24A39AC145BEAAE3F706F7DC0F018DEB20"}, + "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "certificateUrlvalue": {"value": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765"}, + "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": + {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, + "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": + {"value": 3}, "durabilityLevel": {"value": "Bronze"}, "reliabilityLevel": {"value": + "Bronze"}}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '18917' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205172237","name":"AzurePSDeployment-202205172237","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"southcentralus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"7216b617-875e-4148-aa5c-51333771826d","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["southcentralus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southcentralus"]},{"resourceType":"publicIPAddresses","locations":["southcentralus"]},{"resourceType":"loadBalancers","locations":["southcentralus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["southcentralus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["southcentralus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '7285' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:41 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string", + "metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type": + "string", "metadata": {"description": "Name of your cluster - Between 3 and + 23 characters. Letters and numbers only"}}, "adminUserName": {"type": "string", + "metadata": {"description": "Remote desktop user Id"}}, "durabilityLevel": {"type": + "string", "metadata": {"description": "The durability level"}}, "reliabilityLevel": + {"type": "string", "metadata": {"description": "The reliability level"}}, "adminPassword": + {"type": "securestring", "metadata": {"description": "Remote desktop user password. + Must be a strong password"}}, "vmImagePublisher": {"type": "string", "defaultValue": + "MicrosoftWindowsServer", "metadata": {"description": "VM image Publisher"}}, + "vmImageOffer": {"type": "string", "defaultValue": "WindowsServer", "metadata": + {"description": "VM image offer"}}, "vmImageSku": {"type": "string", "metadata": + {"description": "VM image SKU"}}, "vmSku": {"type": "string", "metadata": {"description": + "VM SKU"}}, "vmImageVersion": {"type": "string", "defaultValue": "latest", "metadata": + {"description": "VM image version"}}, "loadBalancedAppPort1": {"type": "int", + "defaultValue": 80, "metadata": {"description": "Input endpoint1 for the application + to use. Replace it with what your application uses"}}, "loadBalancedAppPort2": + {"type": "int", "defaultValue": 8081, "metadata": {"description": "Input endpoint2 + for the application to use. Replace it with what your application uses"}}, "certificateStoreValue": + {"type": "string", "allowedValues": ["My"], "defaultValue": "My", "metadata": + {"description": "The store name where the cert will be deployed in the virtual + machine"}}, "certificateThumbprint": {"type": "string", "metadata": {"description": + "Certificate Thumbprint"}}, "sourceVaultValue": {"type": "string", "metadata": + {"description": "Resource Id of the key vault, is should be in the format of + /subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/"}}, "certificateUrlValue": {"type": "string", "metadata": {"description": + "Refers to the location URL in your key vault where the certificate was uploaded, + it is should be in the format of https://.vault.azure.net:443/secrets/"}}, "clusterProtectionLevel": {"type": "string", "allowedValues": + ["None", "Sign", "EncryptAndSign"], "defaultValue": "EncryptAndSign", "metadata": + {"description": "Protection level.Three values are allowed - EncryptAndSign, + Sign, None. It is best to keep the default of EncryptAndSign, unless you have + a need not to"}}, "storageAccountType": {"type": "string", "allowedValues": + ["Standard_LRS", "Standard_GRS"], "defaultValue": "Standard_LRS", "metadata": + {"description": "Replication option for the VM image storage account"}}, "supportLogStorageAccountType": + {"type": "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the support + log storage account"}}, "applicationDiagnosticsStorageAccountType": {"type": + "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the application + diagnostics storage account"}}, "nt0InstanceCount": {"type": "int", "metadata": + {"description": "Instance count for node type"}}}, "variables": {"computeLocation": + "[parameters(''clusterLocation'')]", "dnsName": "[parameters(''clusterName'')]", + "vmName": "vm", "publicIPAddressName": "PublicIP-VM", "publicIPAddressType": + "Dynamic", "vmStorageAccountContainerName": "vhds", "virtualNetworkName": "VNet", + "addressPrefix": "10.0.0.0/16", "nicName": "NIC", "lbName": "LoadBalancer", + "lbIPName": "PublicIP-LB-FE", "availSetName": "AvailabilitySet", "maxPercentUpgradeDomainDeltaUnhealthyNodes": + "100", "vnetID": "[resourceId(''Microsoft.Network/virtualNetworks'',variables(''virtualNetworkName''))]", + "overProvision": "false", "vmssApiVersion": "2017-03-30", "lbApiVersion": "2015-06-15", + "vNetApiVersion": "2015-06-15", "storageApiVersion": "2016-01-01", "publicIPApiVersion": + "2015-06-15", "nt0applicationStartPort": "20000", "nt0applicationEndPort": "30000", + "nt0ephemeralStartPort": "49152", "nt0ephemeralEndPort": "65534", "nt0fabricTcpGatewayPort": + "19000", "nt0fabricHttpGatewayPort": "19080", "subnet0Name": "Subnet-0", "subnet0Prefix": + "10.0.0.0/24", "subnet0Ref": "[concat(variables(''vnetID''),''/subnets/'',variables(''subnet0Name''))]", + "supportLogStorageAccountName": "[toLower( concat(''sflogs'', uniqueString(resourceGroup().id),''2''))]", + "applicationDiagnosticsStorageAccountName": "[toLower(concat(uniqueString(resourceGroup().id), + ''3'' ))]", "lbID0": "[resourceId(''Microsoft.Network/loadBalancers'',concat(''LB'',''-'', + parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", "lbIPConfig0": + "[concat(variables(''lbID0''),''/frontendIPConfigurations/LoadBalancerIPConfig'')]", + "lbPoolID0": "[concat(variables(''lbID0''),''/backendAddressPools/LoadBalancerBEAddressPool'')]", + "lbProbeID0": "[concat(variables(''lbID0''),''/probes/FabricGatewayProbe'')]", + "lbHttpProbeID0": "[concat(variables(''lbID0''),''/probes/FabricHttpGatewayProbe'')]", + "lbNatPoolID0": "[concat(variables(''lbID0''),''/inboundNatPools/LoadBalancerBEAddressNatPool'')]", + "vmNodeType0Name": "[toLower(concat(''NT1'', variables(''vmName'')))]", "vmNodeType0Size": + "[parameters(''vmSku'')]"}, "resources": [{"apiVersion": "[variables(''storageApiVersion'')]", + "type": "Microsoft.Storage/storageAccounts", "name": "[variables(''supportLogStorageAccountName'')]", + "location": "[variables(''computeLocation'')]", "dependsOn": [], "properties": + {}, "kind": "Storage", "sku": {"name": "[parameters(''supportLogStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''storageApiVersion'')]", "type": "Microsoft.Storage/storageAccounts", + "name": "[variables(''applicationDiagnosticsStorageAccountName'')]", "location": + "[variables(''computeLocation'')]", "dependsOn": [], "properties": {}, "kind": + "Storage", "sku": {"name": "[parameters(''applicationDiagnosticsStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''vNetApiVersion'')]", "type": "Microsoft.Network/virtualNetworks", + "name": "[variables(''virtualNetworkName'')]", "location": "[variables(''computeLocation'')]", + "properties": {"addressSpace": {"addressPrefixes": ["[variables(''addressPrefix'')]"]}, + "subnets": [{"name": "[variables(''subnet0Name'')]", "properties": {"addressPrefix": + "[variables(''subnet0Prefix'')]"}}]}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": "[variables(''publicIPApiVersion'')]", + "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(variables(''lbIPName''),''-'',''0'')]", + "location": "[variables(''computeLocation'')]", "properties": {"dnsSettings": + {"domainNameLabel": "[variables(''dnsName'')]"}, "publicIPAllocationMethod": + "Dynamic"}, "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''lbApiVersion'')]", "type": "Microsoft.Network/loadBalancers", + "name": "[concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name''))]", + "location": "[variables(''computeLocation'')]", "dependsOn": ["[concat(''Microsoft.Network/publicIPAddresses/'',concat(variables(''lbIPName''),''-'',''0''))]"], + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerIPConfig", + "properties": {"publicIPAddress": {"id": "[resourceId(''Microsoft.Network/publicIPAddresses'',concat(variables(''lbIPName''),''-'',''0''))]"}}}], + "backendAddressPools": [{"name": "LoadBalancerBEAddressPool", "properties": + {}}], "loadBalancingRules": [{"name": "LBRule", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricTcpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbProbeID0'')]"}, "protocol": "tcp"}}, {"name": + "LBHttpRule", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbHttpProbeID0'')]"}, "protocol": "tcp"}}, + {"name": "AppPortLBRule1", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[parameters(''loadBalancedAppPort1'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort1'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe1'')]"}, + "protocol": "tcp"}}, {"name": "AppPortLBRule2", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[parameters(''loadBalancedAppPort2'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort2'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe2'')]"}, + "protocol": "tcp"}}], "probes": [{"name": "FabricGatewayProbe", "properties": + {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricHttpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "AppPortProbe1", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[parameters(''loadBalancedAppPort1'')]", "protocol": + "tcp"}}, {"name": "AppPortProbe2", "properties": {"intervalInSeconds": 5, "numberOfProbes": + 2, "port": "[parameters(''loadBalancedAppPort2'')]", "protocol": "tcp"}}], "inboundNatPools": + [{"name": "LoadBalancerBEAddressNatPool", "properties": {"backendPort": "3389", + "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, "frontendPortRangeEnd": + "4500", "frontendPortRangeStart": "3389", "protocol": "tcp"}}]}, "tags": {"resourceType": + "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": + "[variables(''vmssApiVersion'')]", "type": "Microsoft.Compute/virtualMachineScaleSets", + "name": "[variables(''vmNodeType0Name'')]", "location": "[variables(''computeLocation'')]", + "dependsOn": ["[concat(''Microsoft.Network/virtualNetworks/'', variables(''virtualNetworkName''))]", + "[concat(''Microsoft.Network/loadBalancers/'', concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName''))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''applicationDiagnosticsStorageAccountName''))]"], + "properties": {"overprovision": "[variables(''overProvision'')]", "upgradePolicy": + {"mode": "Automatic"}, "virtualMachineProfile": {"extensionProfile": {"extensions": + [{"name": "[concat(''ServiceFabricNodeVmExt'',''_vmNodeType0Name'')]", "properties": + {"type": "ServiceFabricNode", "autoUpgradeMinorVersion": false, "protectedSettings": + {"StorageAccountKey1": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key1]", + "StorageAccountKey2": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key2]"}, + "publisher": "Microsoft.Azure.ServiceFabric", "settings": {"clusterEndpoint": + "[reference(parameters(''clusterName'')).clusterEndpoint]", "nodeTypeRef": "[variables(''vmNodeType0Name'')]", + "dataPath": "D:\\\\SvcFab", "durabilityLevel": "[parameters(''durabilityLevel'')]", + "nicPrefixOverride": "[variables(''subnet0Prefix'')]", "certificate": {"thumbprint": + "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}}, + "typeHandlerVersion": "1.1"}}, {"name": "[concat(''VMDiagnosticsVmExt'',''_vmNodeType0Name'')]", + "properties": {"type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true, "protectedSettings": + {"storageAccountName": "[variables(''applicationDiagnosticsStorageAccountName'')]", + "storageAccountKey": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''applicationDiagnosticsStorageAccountName'')),''2015-05-01-preview'').key1]", + "storageAccountEndPoint": "https://core.windows.net/"}, "publisher": "Microsoft.Azure.Diagnostics", + "settings": {"WadCfg": {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": + "50000", "EtwProviders": {"EtwEventSourceProviderConfiguration": [{"provider": + "Microsoft-ServiceFabric-Actors", "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableActorEventTable"}}, + {"provider": "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], + "EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", + "scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter": + "4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination": + "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(''applicationDiagnosticsStorageAccountName'')]"}, + "typeHandlerVersion": "1.5"}}]}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "[concat(variables(''nicName''), ''-0'')]", "properties": {"ipConfigurations": + [{"name": "[concat(variables(''nicName''),''-'',0)]", "properties": {"loadBalancerBackendAddressPools": + [{"id": "[variables(''lbPoolID0'')]"}], "loadBalancerInboundNatPools": [{"id": + "[variables(''lbNatPoolID0'')]"}], "subnet": {"id": "[variables(''subnet0Ref'')]"}}}], + "primary": true}}]}, "osProfile": {"adminPassword": "[parameters(''adminPassword'')]", + "adminUsername": "[parameters(''adminUsername'')]", "computernamePrefix": "[variables(''vmNodeType0Name'')]", + "secrets": [{"sourceVault": {"id": "[parameters(''sourceVaultValue'')]"}, "vaultCertificates": + [{"certificateStore": "[parameters(''certificateStoreValue'')]", "certificateUrl": + "[parameters(''certificateUrlValue'')]"}]}]}, "storageProfile": {"imageReference": + {"publisher": "[parameters(''vmImagePublisher'')]", "offer": "[parameters(''vmImageOffer'')]", + "sku": "[parameters(''vmImageSku'')]", "version": "[parameters(''vmImageVersion'')]"}, + "osDisk": {"caching": "ReadOnly", "createOption": "FromImage", "managedDisk": + {"storageAccountType": "[parameters(''storageAccountType'')]"}}}}}, "sku": {"name": + "[variables(''vmNodeType0Size'')]", "capacity": "[parameters(''nt0InstanceCount'')]", + "tier": "Standard"}, "tags": {"resourceType": "Service Fabric", "clusterName": + "[parameters(''clusterName'')]"}}, {"apiVersion": "2017-07-01-preview", "type": + "Microsoft.ServiceFabric/clusters", "name": "[parameters(''clusterName'')]", + "location": "[parameters(''clusterLocation'')]", "dependsOn": ["[concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName''))]"], "properties": {"certificate": + {"thumbprint": "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}, + "clientCertificateCommonNames": [], "clientCertificateThumbprints": [], "clusterState": + "Default", "diagnosticsStorageAccountConfig": {"blobEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.blob]", + "protectedAccountKeyName": "StorageAccountKey1", "queueEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.queue]", + "storageAccountName": "[variables(''supportLogStorageAccountName'')]", "tableEndpoint": + "[reference(concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName'')), + variables(''storageApiVersion'')).primaryEndpoints.table]"}, "fabricSettings": + [{"parameters": [{"name": "ClusterProtectionLevel", "value": "[parameters(''clusterProtectionLevel'')]"}], + "name": "Security"}], "addonFeatures": ["DnsService"], "managementEndpoint": + "[concat(''https://'',reference(concat(variables(''lbIPName''),''-'',''0'')).dnsSettings.fqdn,'':'',variables(''nt0fabricHttpGatewayPort''))]", + "nodeTypes": [{"name": "[variables(''vmNodeType0Name'')]", "applicationPorts": + {"endPort": "[variables(''nt0applicationEndPort'')]", "startPort": "[variables(''nt0applicationStartPort'')]"}, + "clientConnectionEndpointPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "durabilityLevel": "[parameters(''durabilityLevel'')]", "ephemeralPorts": {"endPort": + "[variables(''nt0ephemeralEndPort'')]", "startPort": "[variables(''nt0ephemeralStartPort'')]"}, + "httpGatewayEndpointPort": "[variables(''nt0fabricHttpGatewayPort'')]", "isPrimary": + true, "vmInstanceCount": "[parameters(''nt0InstanceCount'')]"}], "provisioningState": + "Default", "reliabilityLevel": "[parameters(''reliabilityLevel'')]", "upgradeMode": + "Automatic", "vmImage": "Windows"}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}], "outputs": {"clusterProperties": + {"value": "[reference(parameters(''clusterName''))]", "type": "object"}}}, "parameters": + {"clusterLocation": {"value": "southcentralus"}, "clusterName": {"value": "sfrp-cli-000004"}, + "adminUserName": {"value": "adminuser"}, "adminPassword": {"value": "Pass123!@#"}, + "vmImagePublisher": {"value": "MicrosoftWindowsServer"}, "vmSku": {"value": + "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": + {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": + {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": + {"value": "My"}, "certificateThumbprint": {"value": "5167BB24A39AC145BEAAE3F706F7DC0F018DEB20"}, + "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "certificateUrlvalue": {"value": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765"}, + "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": + {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, + "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": + {"value": 3}, "durabilityLevel": {"value": "Bronze"}, "reliabilityLevel": {"value": + "Bronze"}}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '18917' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205172237","name":"AzurePSDeployment-202205172237","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"southcentralus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-05-18T05:37:44.6822573Z","duration":"PT0.0007169S","correlationId":"2d854002-c7cc-41da-b0fd-3d49e677f743","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["southcentralus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southcentralus"]},{"resourceType":"publicIPAddresses","locations":["southcentralus"]},{"resourceType":"loadBalancers","locations":["southcentralus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["southcentralus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["southcentralus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205172237/operationStatuses/08585487546225086283?api-version=2021-04-01 + cache-control: + - no-cache + content-length: + - '6206' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:37:44 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:38:14 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:38:44 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:39:15 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:39:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:40:15 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:40:44 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:41:15 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:41:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:42:15 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:42:45 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:43:15 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:43:46 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:44:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:44:46 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:45:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:45:46 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:46:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:46:46 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:47:17 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:47:47 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:48:16 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?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: + - Wed, 18 May 2022 05:48:47 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585487546225086283?api-version=2021-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:49:17 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205172237","name":"AzurePSDeployment-202205172237","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"southcentralus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-05-18T05:48:54.4414311Z","duration":"PT11M9.7598907S","correlationId":"2d854002-c7cc-41da-b0fd-3d49e677f743","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["southcentralus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["southcentralus"]},{"resourceType":"publicIPAddresses","locations":["southcentralus"]},{"resourceType":"loadBalancers","locations":["southcentralus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["southcentralus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["southcentralus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"u334upxolvjo23","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogsu334upxolvjo22","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"0177dd14-f770-48f2-bd6e-0fc1ae2f6722","clusterCodeVersion":"9.0.1017.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080","clusterEndpoint":"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722","certificate":{"thumbprint":"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogsu334upxolvjo22","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogsu334upxolvjo22.blob.core.windows.net/","queueEndpoint":"https://sflogsu334upxolvjo22.queue.core.windows.net/","tableEndpoint":"https://sflogsu334upxolvjo22.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"9.0.1017.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '8905' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 05:49:17 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:49:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:49:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:49:21 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:50:22 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:51:23 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:52:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2872' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:53:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2878' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:54:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2878' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:55:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2878' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:56:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2868' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:57:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263711\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:38:13.9403149+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2868' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:57:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"nodeTypes": [{"name": "nt1vm", "clientConnectionEndpointPort": + 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": "Bronze", "applicationPorts": + {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, + "endPort": 65534}, "isPrimary": true, "vmInstanceCount": 3}, {"name": "nt2", + "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": + "Bronze", "applicationPorts": {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": + {"startPort": 49152, "endPort": 65534}, "isPrimary": false, "vmInstanceCount": + 5}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '590' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263712\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:57:29.8534264+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"UpdatingUserConfiguration\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + cache-control: + - no-cache + content-length: + - '2887' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:57:29 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operationResults/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:58:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:58:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:59:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3381' + content-type: + - application/json + date: + - Wed, 18 May 2022 05:59:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3381' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:00:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3649' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:01:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3649' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:01:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3644' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:02:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3644' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:02:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3644' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:03:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3644' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:03:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3653' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:04:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3653' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:04:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:05:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:05:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:06:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3648' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:06:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3629' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:07:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3629' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:07:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3625' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:08:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3625' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:08:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3625' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:09:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T05:58:53.1828676Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3625' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:09:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/096d5701-1929-479c-9623-d220b9ec7085\",\r\n + \ \"name\": \"096d5701-1929-479c-9623-d220b9ec7085\",\r\n \"status\": \"Succeeded\",\r\n + \ \"startTime\": \"2022-05-18T05:57:29.8906375Z\",\r\n \"endTime\": \"2022-05-18T06:09:50.0321283Z\",\r\n + \ \"percentComplete\": 100.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '374' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:10:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263712\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:57:29.8534264+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3301' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:10:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"southcentralus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-18T05:36:21Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '318' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:03 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks?api-version=2021-08-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"VNet\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet\",\r\n + \ \"etag\": \"W/\\\"afb73318-a82a-4832-be62-9ed33a03b612\\\"\",\r\n \"type\": + \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n + \ \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": + \"sfrp-cli-000004\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": + \"Succeeded\",\r\n \"resourceGuid\": \"78a7cc13-8cf3-400a-b330-d48c7021756b\",\r\n + \ \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n + \ ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": + \"Subnet-0\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"afb73318-a82a-4832-be62-9ed33a03b612\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"addressPrefix\": \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/NRMS-5zwd2npt5yk3sVNet\"\r\n + \ },\r\n \"ipConfigurations\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n + \ \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": + \"Enabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": + false\r\n }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2608' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 2b60eb6d-7cfc-477b-9d6c-0976747d6798 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets?api-version=2021-08-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"Subnet-0\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\",\r\n + \ \"etag\": \"W/\\\"afb73318-a82a-4832-be62-9ed33a03b612\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": + \"10.0.0.0/24\",\r\n \"networkSecurityGroup\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/networkSecurityGroups/NRMS-5zwd2npt5yk3sVNet\"\r\n + \ },\r\n \"ipConfigurations\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/0/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/1/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm/virtualMachines/2/networkInterfaces/NIC-0/ipConfigurations/NIC-0\"\r\n + \ }\r\n ],\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": + \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n + \ },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n + \ }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '1635' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 5a93de29-24c6-4a38-861b-63d68e28d475 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"addressPrefix": "10.0.1.0/24", "privateEndpointNetworkPolicies": + "Enabled", "privateLinkServiceNetworkPolicies": "Enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '141' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"bc4cbea1-9e26-4f93-96b7-6c1ded8c285e\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ab57328a-7061-43ab-b325-aeef742ce310?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '527' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - b8a5d8ad-25c9-43d3-8203-5020362ea11d + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/ab57328a-7061-43ab-b325-aeef742ce310?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:07 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: + - 733bd004-ffe9-462c-b14a-c3b132c5cb70 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"subnet_1\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\",\r\n + \ \"etag\": \"W/\\\"1180eae1-3a83-4594-abff-b269336cb838\\\"\",\r\n \"properties\": + {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.1.0/24\",\r\n + \ \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Enabled\",\r\n + \ \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\n },\r\n \"type\": + \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '528' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:07 GMT + etag: + - W/"1180eae1-3a83-4594-abff-b269336cb838" + 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: + - 8fe3f815-4b3f-446b-a479-636be2eeae2e + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "properties": {"publicIPAllocationMethod": + "Dynamic", "dnsSettings": {"domainNameLabel": "sfrp-cli-000004-nt21"}}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '145' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"6026e828-d659-42dc-be7d-d8aacb0fed53\\\"\",\r\n \"location\": + \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"resourceGuid\": \"1799b4bf-20e5-4794-895b-32f5746a4905\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.southcentralus.cloudapp.azure.com\"\r\n + \ },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d81c4cfb-999f-4859-8b3d-a62a5bc814cb?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '824' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:09 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 88a3fe16-f0f5-4742-af67-ef2fe3229229 + x-ms-ratelimit-remaining-subscription-writes: + - '1198' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/d81c4cfb-999f-4859-8b3d-a62a5bc814cb?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 80903c80-18c2-485e-be9a-336f934b564b + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"LBIP-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"59c4c313-7349-422f-b4a2-4b8e4d5829df\\\"\",\r\n \"location\": + \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"resourceGuid\": \"1799b4bf-20e5-4794-895b-32f5746a4905\",\r\n \"publicIPAddressVersion\": + \"IPv4\",\r\n \"publicIPAllocationMethod\": \"Dynamic\",\r\n \"idleTimeoutInMinutes\": + 4,\r\n \"dnsSettings\": {\r\n \"domainNameLabel\": \"sfrp-cli-000004-nt21\",\r\n + \ \"fqdn\": \"sfrp-cli-000004-nt21.southcentralus.cloudapp.azure.com\"\r\n + \ },\r\n \"ipTags\": []\r\n },\r\n \"type\": \"Microsoft.Network/publicIPAddresses\",\r\n + \ \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": \"Regional\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '825' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:10 GMT + etag: + - W/"59c4c313-7349-422f-b4a2-4b8e4d5829df" + 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: + - 0a692673-7613-43bb-8f74-79b4e1d9fee2 + status: + code: 200 + message: OK +- request: + body: '{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21", + "location": "southcentralus", "properties": {"frontendIPConfigurations": [{"name": + "LoadBalancerIPConfig", "properties": {"publicIPAddress": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21"}}}], + "backendAddressPools": [{"name": "LoadBalancerBEAddressPool"}], "loadBalancingRules": + [{"name": "LBRule", "properties": {"frontendIPConfiguration": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19000, "backendPort": 19000, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}}, {"name": "LBHttpRule", "properties": {"frontendIPConfiguration": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig"}, + "backendAddressPool": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool"}, + "probe": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe"}, + "protocol": "tcp", "frontendPort": 19080, "backendPort": 19080, "idleTimeoutInMinutes": + 5, "enableFloatingIP": false}}], "probes": [{"name": "FabricGatewayProbe", "properties": + {"protocol": "tcp", "port": 19000, "intervalInSeconds": 5, "numberOfProbes": + 2}}, {"name": "FabricHttpGatewayProbe", "properties": {"protocol": "tcp", "port": + 19080, "intervalInSeconds": 5, "numberOfProbes": 2}}], "inboundNatPools": [{"name": + "LoadBalancerBEAddressNatPool", "properties": {"frontendIPConfiguration": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig"}, + "protocol": "tcp", "frontendPortRangeStart": 3389, "frontendPortRangeEnd": 4500, + "backendPort": 3389}}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '2870' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"06bf6660-8021-4636-9cc2-6a0359daf231\",\r\n \"frontendIPConfigurations\": + [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": + \"Regional\"\r\n }\r\n}" + headers: + azure-asyncnotification: + - Enabled + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/954d4311-1092-44ba-9c85-351c201cd56a?api-version=2021-05-01 + cache-control: + - no-cache + content-length: + - '9885' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 736ce7f1-4e3d-4c48-871e-97ae613c87ad + x-ms-ratelimit-remaining-subscription-writes: + - '1197' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/southcentralus/operations/954d4311-1092-44ba-9c85-351c201cd56a?api-version=2021-05-01 + response: + body: + string: "{\r\n \"status\": \"Succeeded\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '29' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-arm-service-request-id: + - 684a6e33-5661-4c1b-861a-15e474df3a79 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"06bf6660-8021-4636-9cc2-6a0359daf231\",\r\n \"frontendIPConfigurations\": + [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": + \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '9885' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:43 GMT + etag: + - W/"290761c7-f54f-42ab-9d30-5c1d18c62cec" + 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: + - 1b73ec16-7dda-4cc8-9118-9da348de5e69 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-network/19.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21?api-version=2021-08-01 + response: + body: + string: "{\r\n \"name\": \"LB-sfrp-cli-000004-nt21\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n \"type\": + \"Microsoft.Network/loadBalancers\",\r\n \"location\": \"southcentralus\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": + \"06bf6660-8021-4636-9cc2-6a0359daf231\",\r\n \"frontendIPConfigurations\": + [\r\n {\r\n \"name\": \"LoadBalancerIPConfig\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/LBIP-sfrp-cli-000004-nt21\"\r\n + \ },\r\n \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ],\r\n \"inboundNatPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"\r\n + \ }\r\n ]\r\n }\r\n }\r\n ],\r\n \"backendAddressPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"loadBalancingRules\": [\r\n {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ },\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19000,\r\n \"backendPort\": + 19000,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\"\r\n + \ }\r\n }\r\n },\r\n {\r\n \"name\": \"LBHttpRule\",\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\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/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ },\r\n \"frontendPort\": 19080,\r\n \"backendPort\": + 19080,\r\n \"enableFloatingIP\": false,\r\n \"idleTimeoutInMinutes\": + 5,\r\n \"protocol\": \"Tcp\",\r\n \"enableDestinationServiceEndpoint\": + false,\r\n \"enableTcpReset\": false,\r\n \"allowBackendPortConflict\": + false,\r\n \"loadDistribution\": \"Default\",\r\n \"backendAddressPool\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ },\r\n \"backendAddressPools\": [\r\n {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"\r\n + \ }\r\n ],\r\n \"probe\": {\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\"\r\n + \ }\r\n }\r\n }\r\n ],\r\n \"probes\": [\r\n {\r\n + \ \"name\": \"FabricGatewayProbe\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19000,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ },\r\n {\r\n \"name\": \"FabricHttpGatewayProbe\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/probes/FabricHttpGatewayProbe\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"protocol\": \"Tcp\",\r\n \"port\": 19080,\r\n \"intervalInSeconds\": + 5,\r\n \"numberOfProbes\": 2,\r\n \"loadBalancingRules\": + [\r\n {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/loadBalancingRules/LBHttpRule\"\r\n + \ }\r\n ]\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/probes\"\r\n + \ }\r\n ],\r\n \"inboundNatRules\": [],\r\n \"inboundNatPools\": + [\r\n {\r\n \"name\": \"LoadBalancerBEAddressNatPool\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\",\r\n + \ \"etag\": \"W/\\\"290761c7-f54f-42ab-9d30-5c1d18c62cec\\\"\",\r\n + \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"frontendPortRangeStart\": 3389,\r\n \"frontendPortRangeEnd\": + 4500,\r\n \"backendPort\": 3389,\r\n \"protocol\": \"Tcp\",\r\n + \ \"idleTimeoutInMinutes\": 4,\r\n \"enableFloatingIP\": + false,\r\n \"enableDestinationServiceEndpoint\": false,\r\n \"enableTcpReset\": + false,\r\n \"allowBackendPortConflict\": false,\r\n \"frontendIPConfiguration\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/frontendIPConfigurations/LoadBalancerIPConfig\"\r\n + \ }\r\n },\r\n \"type\": \"Microsoft.Network/loadBalancers/inboundNatPools\"\r\n + \ }\r\n ]\r\n },\r\n \"sku\": {\r\n \"name\": \"Basic\",\r\n \"tier\": + \"Regional\"\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '9885' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:43 GMT + etag: + - W/"290761c7-f54f-42ab-9d30-5c1d18c62cec" + 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: + - 70198ff2-7269-4cd9-9c31-cc8c9247b9ec + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2021-11-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service + Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\",\r\n \"azsecpack\": + \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D2_V2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n + \ \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n + \ \"adminUsername\": \"adminuser\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ]\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n + \ },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n + \ \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n + \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n + \ ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"8934a35b-bf26-470c-9b95-544ae26a78d7\",\r\n + \ \"timeCreated\": \"2022-05-18T05:38:18.2476593+00:00\"\r\n }\r\n + \ }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '6378' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;882 + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt21?api-version=2021-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 18 May 2022 06:10:47 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/5a71fda3-c1c4-4f33-a120-4c7e1e9a1ac0?monitor=true&api-version=2021-09-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/5a71fda3-c1c4-4f33-a120-4c7e1e9a1ac0?monitor=true&api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt21","name":"sfrpcli000004nt21","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:10:46.1539790Z","key2":"2022-05-18T06:10:46.1539790Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:10:46.1695935Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:10:46.1695935Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:10:46.0446332Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt21.blob.core.windows.net/","queue":"https://sfrpcli000004nt21.queue.core.windows.net/","table":"https://sfrpcli000004nt21.table.core.windows.net/","file":"https://sfrpcli000004nt21.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt21?api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt21","name":"sfrpcli000004nt21","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:10:46.1539790Z","key2":"2022-05-18T06:10:46.1539790Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:10:46.1695935Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:10:46.1695935Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:10:46.0446332Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt21.blob.core.windows.net/","queue":"https://sfrpcli000004nt21.queue.core.windows.net/","table":"https://sfrpcli000004nt21.table.core.windows.net/","file":"https://sfrpcli000004nt21.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt21/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T06:10:46.1539790Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T06:10:46.1539790Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:04 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt22?api-version=2021-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 18 May 2022 06:11:08 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/011fba6b-cf63-40f7-bfbb-9caf051ecd9b?monitor=true&api-version=2021-09-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/011fba6b-cf63-40f7-bfbb-9caf051ecd9b?monitor=true&api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt22","name":"sfrpcli000004nt22","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:07.4977018Z","key2":"2022-05-18T06:11:07.4977018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:07.5133544Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:07.5133544Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:07.3883955Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt22.blob.core.windows.net/","queue":"https://sfrpcli000004nt22.queue.core.windows.net/","table":"https://sfrpcli000004nt22.table.core.windows.net/","file":"https://sfrpcli000004nt22.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt22?api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt22","name":"sfrpcli000004nt22","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:07.4977018Z","key2":"2022-05-18T06:11:07.4977018Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:07.5133544Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:07.5133544Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:07.3883955Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt22.blob.core.windows.net/","queue":"https://sfrpcli000004nt22.queue.core.windows.net/","table":"https://sfrpcli000004nt22.table.core.windows.net/","file":"https://sfrpcli000004nt22.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt22/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T06:11:07.4977018Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T06:11:07.4977018Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt23?api-version=2021-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 18 May 2022 06:11:30 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b185cd03-4b50-4b7a-8d39-9d83016c4056?monitor=true&api-version=2021-09-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/b185cd03-4b50-4b7a-8d39-9d83016c4056?monitor=true&api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt23","name":"sfrpcli000004nt23","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:29.3883397Z","key2":"2022-05-18T06:11:29.3883397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:29.4039968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:29.4039968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:29.2790072Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt23.blob.core.windows.net/","queue":"https://sfrpcli000004nt23.queue.core.windows.net/","table":"https://sfrpcli000004nt23.table.core.windows.net/","file":"https://sfrpcli000004nt23.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt23?api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt23","name":"sfrpcli000004nt23","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:29.3883397Z","key2":"2022-05-18T06:11:29.3883397Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:29.4039968Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:29.4039968Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:29.2790072Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt23.blob.core.windows.net/","queue":"https://sfrpcli000004nt23.queue.core.windows.net/","table":"https://sfrpcli000004nt23.table.core.windows.net/","file":"https://sfrpcli000004nt23.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt23/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T06:11:29.3883397Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T06:11:29.3883397Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:11:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt24?api-version=2021-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 18 May 2022 06:11:51 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/8ed65169-13e5-4c57-8994-c733cd542612?monitor=true&api-version=2021-09-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/8ed65169-13e5-4c57-8994-c733cd542612?monitor=true&api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt24","name":"sfrpcli000004nt24","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:50.2946660Z","key2":"2022-05-18T06:11:50.2946660Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:50.3102760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:50.3102760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:50.1852685Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt24.blob.core.windows.net/","queue":"https://sfrpcli000004nt24.queue.core.windows.net/","table":"https://sfrpcli000004nt24.table.core.windows.net/","file":"https://sfrpcli000004nt24.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt24?api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt24","name":"sfrpcli000004nt24","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:11:50.2946660Z","key2":"2022-05-18T06:11:50.2946660Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:50.3102760Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:11:50.3102760Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:11:50.1852685Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt24.blob.core.windows.net/","queue":"https://sfrpcli000004nt24.queue.core.windows.net/","table":"https://sfrpcli000004nt24.table.core.windows.net/","file":"https://sfrpcli000004nt24.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt24/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T06:11:50.2946660Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T06:11:50.2946660Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: '{"sku": {"name": "Standard_LRS"}, "kind": "storage", "location": "southcentralus"}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '82' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt25?api-version=2021-09-01 + response: + body: + string: '' + headers: + cache-control: + - no-cache + content-length: + - '0' + content-type: + - text/plain; charset=utf-8 + date: + - Wed, 18 May 2022 06:12:12 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/371b5529-a65c-442e-8f93-2a02aab92217?monitor=true&api-version=2021-09-01 + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Storage/locations/southcentralus/asyncoperations/371b5529-a65c-442e-8f93-2a02aab92217?monitor=true&api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt25","name":"sfrpcli000004nt25","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:12:11.4665676Z","key2":"2022-05-18T06:12:11.4665676Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:12:11.4821695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:12:11.4821695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:12:11.3571896Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt25.blob.core.windows.net/","queue":"https://sfrpcli000004nt25.queue.core.windows.net/","table":"https://sfrpcli000004nt25.table.core.windows.net/","file":"https://sfrpcli000004nt25.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt25?api-version=2021-09-01 + response: + body: + string: '{"sku":{"name":"Standard_LRS","tier":"Standard"},"kind":"Storage","id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt25","name":"sfrpcli000004nt25","type":"Microsoft.Storage/storageAccounts","location":"southcentralus","tags":{},"properties":{"keyCreationTime":{"key1":"2022-05-18T06:12:11.4665676Z","key2":"2022-05-18T06:12:11.4665676Z"},"privateEndpointConnections":[],"minimumTlsVersion":"TLS1_0","allowBlobPublicAccess":true,"networkAcls":{"bypass":"AzureServices","virtualNetworkRules":[],"ipRules":[],"defaultAction":"Allow"},"supportsHttpsTrafficOnly":true,"encryption":{"services":{"file":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:12:11.4821695Z"},"blob":{"keyType":"Account","enabled":true,"lastEnabledTime":"2022-05-18T06:12:11.4821695Z"}},"keySource":"Microsoft.Storage"},"provisioningState":"Succeeded","creationTime":"2022-05-18T06:12:11.3571896Z","primaryEndpoints":{"blob":"https://sfrpcli000004nt25.blob.core.windows.net/","queue":"https://sfrpcli000004nt25.queue.core.windows.net/","table":"https://sfrpcli000004nt25.table.core.windows.net/","file":"https://sfrpcli000004nt25.file.core.windows.net/"},"primaryLocation":"southcentralus","statusOfPrimary":"available"}}' + headers: + cache-control: + - no-cache + content-length: + - '1339' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sfrpcli000004nt25/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T06:12:11.4665676Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T06:12:11.4665676Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/u334upxolvjo23/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T05:37:49.2562561Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T05:37:49.2562561Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '0' + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-storage/20.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogsu334upxolvjo22/listKeys?api-version=2021-09-01&$expand=kerb + response: + body: + string: '{"keys":[{"creationTime":"2022-05-18T05:37:49.2718506Z","keyName":"key1","value":"veryFakedStorageAccountKey==","permissions":"FULL"},{"creationTime":"2022-05-18T05:37:49.2718506Z","keyName":"key2","value":"veryFakedStorageAccountKey==","permissions":"FULL"}]}' + headers: + cache-control: + - no-cache + content-length: + - '260' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:12:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-Azure-Storage-Resource-Provider/1.0,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-ratelimit-remaining-subscription-resource-requests: + - '11999' + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "sku": {"name": "Standard_D15_v2", "tier": + "Standard", "capacity": 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, + "virtualMachineProfile": {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": + "admintest", "adminPassword": "Pass123!@#", "secrets": [{"sourceVault": {"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "vaultCertificates": [{"certificateUrl": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765", + "certificateStore": "My"}]}]}, "storageProfile": {"imageReference": {"publisher": + "MicrosoftWindowsServer", "offer": "WindowsServer", "sku": "2016-Datacenter", + "version": "latest"}, "osDisk": {"name": "vmssosdisk", "caching": "ReadOnly", + "createOption": "FromImage", "vhdContainers": ["https://sfrpcli000004nt21.blob.core.windows.net/vhd", + "https://sfrpcli000004nt22.blob.core.windows.net/vhd", "https://sfrpcli000004nt23.blob.core.windows.net/vhd", + "https://sfrpcli000004nt24.blob.core.windows.net/vhd", "https://sfrpcli000004nt25.blob.core.windows.net/vhd"]}}, + "networkProfile": {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", + "properties": {"primary": true, "ipConfigurations": [{"name": "Nic-nt2", "properties": + {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, + "loadBalancerBackendAddressPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}]}}]}, + "extensionProfile": {"extensions": [{"name": "ServiceFabricNodeVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.ServiceFabric", "type": "ServiceFabricNode", + "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": false, "settings": {"clusterEndpoint": + "https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722", + "nodeTypeRef": "nt2", "dataPath": "D:\\\\SvcFab", "durabilityLevel": "Bronze", + "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "5167BB24A39AC145BEAAE3F706F7DC0F018DEB20", + "x509StoreName": "My"}}, "protectedSettings": {"StorageAccountKey1": "veryFakedStorageAccountKey==", + "StorageAccountKey2": "veryFakedStorageAccountKey=="}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", + "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": + {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": + {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", + "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": + "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": + [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": + "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, + "StorageAccount": "u334upxolvjo23"}, "protectedSettings": {"storageAccountName": + "u334upxolvjo23", "storageAccountKey": "veryFakedStorageAccountKey==", "storageAccountEndPoint": + "https://core.windows.net/"}}}]}}, "overprovision": false}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + Content-Length: + - '4019' + Content-Type: + - application/json + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2021-11-01 + response: + body: + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": + {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": + \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"nt2\",\r\n \"adminUsername\": + \"admintest\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": + true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcli000004nt21.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt22.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt23.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt24.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt25.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"osType\": \"Windows\",\r\n \"name\": + \"vmssosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Creating\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"59f5cbe1-1c10-401a-86f7-a5447aaf75ff\",\r\n \"timeCreated\": \"2022-05-18T06:12:33.166968+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/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + cache-control: + - no-cache + content-length: + - '6343' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:12:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/CreateVMScaleSet3Min;163,Microsoft.Compute/CreateVMScaleSet30Min;819,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2646,Microsoft.Compute/VmssQueuedVMOperations;0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '5' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:14:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14998,Microsoft.Compute/GetOperation30Min;29998 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:14:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:15:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:15:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:16:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14999,Microsoft.Compute/GetOperation30Min;29999 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:16:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14997,Microsoft.Compute/GetOperation30Min;29997 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:17:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14996,Microsoft.Compute/GetOperation30Min;29996 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:17:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14995,Microsoft.Compute/GetOperation30Min;29995 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:18:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:18:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29992 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:19:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29991 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:19:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29990 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:20:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29989 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:20:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29987 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:21:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29986 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:21:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:22:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29984 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:22:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29982 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:23:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29981 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:23:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29980 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:24:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29979 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:24:54 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29977 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:25:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29976 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:25:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29975 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:26:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29974 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:26:54 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29972 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:27:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14992,Microsoft.Compute/GetOperation30Min;29971 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:27:54 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29970 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/18b0ffcb-f3b8-4ba9-824e-6d64396de85a?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:12:33.1513506+00:00\",\r\n \"endTime\": + \"2022-05-18T06:28:08.0445704+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"18b0ffcb-f3b8-4ba9-824e-6d64396de85a\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:28:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14993,Microsoft.Compute/GetOperation30Min;29969 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2021-11-01 + response: + body: + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": + {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": {\r\n \"mode\": + \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": {\r\n \"osProfile\": + {\r\n \"computerNamePrefix\": \"nt2\",\r\n \"adminUsername\": + \"admintest\",\r\n \"windowsConfiguration\": {\r\n \"provisionVMAgent\": + true,\r\n \"enableAutomaticUpdates\": true,\r\n \"enableVMAgentPlatformUpdates\": + false\r\n },\r\n \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcli000004nt21.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt22.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt23.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt24.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt25.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"osType\": \"Windows\",\r\n \"name\": + \"vmssosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"59f5cbe1-1c10-401a-86f7-a5447aaf75ff\",\r\n \"timeCreated\": \"2022-05-18T06:12:33.166968+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '6344' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:28:24 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSet3Min;386,Microsoft.Compute/GetVMScaleSet30Min;2565 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster node-type add + Connection: + - keep-alive + ParameterSetName: + - -g -c --node-type --capacity --vm-user-name --vm-password --durability-level + --vm-sku + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263712\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:57:29.8534264+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3301' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:28:25 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263712\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T05:57:29.8534264+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3301' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:28:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2021-11-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service + Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\",\r\n \"azsecpack\": + \"nonprod\",\r\n \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D2_V2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 3\r\n },\r\n + \ \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n + \ \"adminUsername\": \"adminuser\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ]\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n + \ },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n + \ \"type\": \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n + \ \"type\": \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n }\r\n + \ ]\r\n }\r\n },\r\n \"provisioningState\": + \"Succeeded\",\r\n \"overprovision\": false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": + false,\r\n \"uniqueId\": \"8934a35b-bf26-470c-9b95-544ae26a78d7\",\r\n + \ \"timeCreated\": \"2022-05-18T05:38:18.2476593+00:00\"\r\n }\r\n + \ },\r\n {\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n + \ \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"nt2\",\r\n + \ \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ],\r\n \"allowExtensionOperations\": + true,\r\n \"requireGuestProvisionSignal\": true\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"vhdContainers\": + [\r\n \"https://sfrpcli000004nt21.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt22.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt23.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt24.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt25.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"osType\": \"Windows\",\r\n \"name\": + \"vmssosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {}\r\n }\r\n }\r\n ]\r\n }\r\n + \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"59f5cbe1-1c10-401a-86f7-a5447aaf75ff\",\r\n \"timeCreated\": \"2022-05-18T06:12:33.166968+00:00\"\r\n + \ }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '13205' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:28:26 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGetVMScaleSet3Min;178,Microsoft.Compute/HighCostGetVMScaleSet30Min;890 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"nodeTypes": [{"name": "nt1vm", "clientConnectionEndpointPort": + 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": "Bronze", "applicationPorts": + {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": {"startPort": 49152, + "endPort": 65534}, "isPrimary": true, "vmInstanceCount": 3}, {"name": "nt2", + "clientConnectionEndpointPort": 19000, "httpGatewayEndpointPort": 19080, "durabilityLevel": + "Silver", "applicationPorts": {"startPort": 20000, "endPort": 30000}, "ephemeralPorts": + {"startPort": 49152, "endPort": 65534}, "isPrimary": false, "vmInstanceCount": + 5}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + Content-Length: + - '590' + Content-Type: + - application/json + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263713\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T06:28:27.9033229+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"UpdatingUserConfiguration\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com:443/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + cache-control: + - no-cache + content-length: + - '3320' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:28:27 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operationResults/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:29:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:29:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '361' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:30:27 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:30:57 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:31:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4036' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:31:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_0\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4036' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:32:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:32:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:33:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:33:58 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:34:28 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:34:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3808' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:35:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3808' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:35:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:36:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:36:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:37:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:38:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3812' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:38:29 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3812' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:38:59 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]},{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]},{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4376' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:39:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]},{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt2_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]},{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"PreUpgradeSafetyCheck\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[{\\\"kind\\\":\\\"EnsureSeedNodeQuorum\\\"}]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4376' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:40:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4048' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:40:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[{\\\"nodeName\\\":\\\"_nt1vm_2\\\",\\\"upgradePhase\\\":\\\"Upgrading\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"pendingSafetyChecks\\\":[]}]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '4048' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:41:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3807' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:41:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3807' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:42:00 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3807' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:42:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:03:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3807' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:43:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3816' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:43:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3811' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:44:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3811' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:44:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3811' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:45:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3811' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:45:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:46:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:46:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:15:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3788' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:47:01 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:15:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3788' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:47:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:16:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3788' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:48:02 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":true,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:16:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-18T06:29:53.6151181Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3788' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:48:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6?api-version=2020-03-01&Experiment=local + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/southcentralus/operations/2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n + \ \"name\": \"2c4527ad-e7fb-4e65-a23b-7ed3b83768e6\",\r\n \"status\": \"Succeeded\",\r\n + \ \"startTime\": \"2022-05-18T06:28:27.9285018Z\",\r\n \"endTime\": \"2022-05-18T06:49:01.56704Z\",\r\n + \ \"percentComplete\": 100.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '372' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263713\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T06:28:27.9033229+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3301' + content-type: + - application/json + date: + - Wed, 18 May 2022 06:49:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +- request: + body: '{"location": "southcentralus", "tags": {"azsecpack": "nonprod", "platformsettings.host_environment.service.platform_optedin_for_rootcerts": + "true"}, "sku": {"name": "Standard_D15_v2", "tier": "Standard", "capacity": + 5}, "properties": {"upgradePolicy": {"mode": "Automatic"}, "virtualMachineProfile": + {"osProfile": {"computerNamePrefix": "nt2", "adminUsername": "admintest", "windowsConfiguration": + {"provisionVMAgent": true, "enableAutomaticUpdates": true}, "secrets": [{"sourceVault": + {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "vaultCertificates": [{"certificateUrl": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765", + "certificateStore": "My"}]}], "allowExtensionOperations": true}, "storageProfile": + {"imageReference": {"publisher": "MicrosoftWindowsServer", "offer": "WindowsServer", + "sku": "2016-Datacenter", "version": "latest"}, "osDisk": {"name": "vmssosdisk", + "caching": "ReadOnly", "createOption": "FromImage", "osType": "Windows", "vhdContainers": + ["https://sfrpcli000004nt21.blob.core.windows.net/vhd", "https://sfrpcli000004nt22.blob.core.windows.net/vhd", + "https://sfrpcli000004nt23.blob.core.windows.net/vhd", "https://sfrpcli000004nt24.blob.core.windows.net/vhd", + "https://sfrpcli000004nt25.blob.core.windows.net/vhd"]}}, "networkProfile": + {"networkInterfaceConfigurations": [{"name": "NIC-nt2-nt2", "properties": {"primary": + true, "enableAcceleratedNetworking": false, "dnsSettings": {"dnsServers": []}, + "ipConfigurations": [{"name": "Nic-nt2", "properties": {"subnet": {"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1"}, + "privateIPAddressVersion": "IPv4", "loadBalancerBackendAddressPools": [{"id": + "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool"}], + "loadBalancerInboundNatPools": [{"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool"}]}}], + "enableIPForwarding": false}}]}, "extensionProfile": {"extensions": [{"name": + "ServiceFabricNodeVmExt_vmNodeType0Name", "properties": {"publisher": "Microsoft.Azure.ServiceFabric", + "type": "ServiceFabricNode", "typeHandlerVersion": "1.1", "autoUpgradeMinorVersion": + false, "settings": {"clusterEndpoint": "https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722", + "nodeTypeRef": "nt2", "dataPath": "D:\\\\SvcFab", "durabilityLevel": "Silver", + "nicPrefixOverride": "10.0.0.0/24", "certificate": {"thumbprint": "5167BB24A39AC145BEAAE3F706F7DC0F018DEB20", + "x509StoreName": "My"}, "enableParallelJobs": true}}}, {"name": "VMDiagnosticsVmExt_vmNodeType0Name", + "properties": {"publisher": "Microsoft.Azure.Diagnostics", "type": "IaaSDiagnostics", + "typeHandlerVersion": "1.5", "autoUpgradeMinorVersion": true, "settings": {"WadCfg": + {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": "50000", "EtwProviders": + {"EtwEventSourceProviderConfiguration": [{"provider": "Microsoft-ServiceFabric-Actors", + "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableActorEventTable"}}, {"provider": + "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": "PT5M", "DefaultEvents": + {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], "EtwManifestProviderConfiguration": + [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", "scheduledTransferLogLevelFilter": + "Information", "scheduledTransferKeywordFilter": "4611686018427387904", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricSystemEventTable"}}]}}}, + "StorageAccount": "u334upxolvjo23"}}}, {"name": "Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration", + "properties": {"publisher": "Microsoft.Azure.Security.AntimalwareSignature", + "type": "AntimalwareConfiguration", "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": + true, "enableAutomaticUpgrade": true, "settings": {}}}, {"name": "Microsoft.Azure.Geneva.GenevaMonitoring", + "properties": {"publisher": "Microsoft.Azure.Geneva", "type": "GenevaMonitoring", + "typeHandlerVersion": "2.0", "autoUpgradeMinorVersion": true, "enableAutomaticUpgrade": + true, "settings": {}}}]}}, "overprovision": false, "doNotRunExtensionsOnOverprovisionedVMs": + false, "singlePlacementGroup": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + Content-Length: + - '4741' + Content-Type: + - application/json + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2021-11-01 + response: + body: + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-southcentralus\": + {\r\n \"principalId\": \"89908d6c-8e61-4813-b182-e1537dbcc055\",\r\n + \ \"clientId\": \"539158e8-a27f-453c-a688-2099f729416d\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n + \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": + \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcli000004nt21.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt22.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt23.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt24.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt25.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"osType\": \"Windows\",\r\n \"name\": + \"vmssosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Silver\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"},\"enableParallelJobs\":true}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Updating\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"59f5cbe1-1c10-401a-86f7-a5447aaf75ff\",\r\n \"timeCreated\": \"2022-05-18T06:12:33.166968+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/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + cache-control: + - no-cache + content-length: + - '6791' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:49:07 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-ratelimit-remaining-resource: + - Microsoft.Compute/CreateVMScaleSet3Min;131,Microsoft.Compute/CreateVMScaleSet30Min;660,Microsoft.Compute/VMScaleSetBatchedVMRequests5Min;2646,Microsoft.Compute/VmssQueuedVMOperations;0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + x-ms-request-charge: + - '5' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:49:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29799 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:50:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29799 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:50:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29790 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:51:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29778 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:51:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14952,Microsoft.Compute/GetOperation30Min;29769 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:52:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29760 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:52:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29751 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:53:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29739 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:53:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29730 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:54:09 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29721 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:54:39 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29713 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:55:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29711 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:55:39 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29702 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:56:09 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29693 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:56:39 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29684 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:57:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:57:39 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14985,Microsoft.Compute/GetOperation30Min;29985 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:58:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14976,Microsoft.Compute/GetOperation30Min;29976 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:58:40 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14967,Microsoft.Compute/GetOperation30Min;29967 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:59:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14955,Microsoft.Compute/GetOperation30Min;29955 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 06:59:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29946 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:00:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29939 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:00:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29930 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:01:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29919 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:01:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29910 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:02:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29901 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:02:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29892 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:03:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29880 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:03:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29872 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:04:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14951,Microsoft.Compute/GetOperation30Min;29863 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:04:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29854 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:05:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29842 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:05: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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29833 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:06:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29824 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:06:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29815 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:07:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29804 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:07: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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29795 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:08:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29786 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:08: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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29777 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:09:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29765 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:09: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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29756 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:10:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29747 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:10:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29738 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:11:14 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29726 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:11: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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29718 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:12:14 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29709 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:12:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29701 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:13:14 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29689 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:13:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:14:14 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29672 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:14:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29663 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:15:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29651 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:15:45 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29642 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:16:14 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29633 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:16:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29625 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:17:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29614 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:17:45 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29605 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:18:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29597 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:18:45 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29588 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:19:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29576 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:19:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29567 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:20:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29558 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:20:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29549 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:21:16 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29537 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:21:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29528 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:22:16 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14994,Microsoft.Compute/GetOperation30Min;29994 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:22:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14986,Microsoft.Compute/GetOperation30Min;29986 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:23:16 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14974,Microsoft.Compute/GetOperation30Min;29974 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:23:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14965,Microsoft.Compute/GetOperation30Min;29965 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:24:16 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14956,Microsoft.Compute/GetOperation30Min;29956 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:24:46 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29947 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:25:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29936 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:25:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29927 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:26:16 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29918 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:26:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29909 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:27:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29897 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:27:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29888 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:28:17 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29879 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:28:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29871 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:29:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29859 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:29:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29851 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:30:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29842 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:30:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29833 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:31:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29822 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:31:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29813 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:32:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29804 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:32:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29795 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:33:18 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29783 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:33:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29774 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:34:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29765 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:34:48 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29756 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:35:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29745 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:35:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29737 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:36:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29728 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:36:49 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29719 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:37:19 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29708 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:37:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29699 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:38:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29690 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:38:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29681 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:39:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29669 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:39:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29660 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:40:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29651 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:40:50 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29643 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:41:20 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29631 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:41:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29622 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:42:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29613 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:42:51 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14947,Microsoft.Compute/GetOperation30Min;29604 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:43:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29593 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:43:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29584 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:44:21 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29575 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:44:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29565 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:45:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29554 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:45:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29545 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:46:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29536 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:46:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29526 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:47:22 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29516 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:47:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14943,Microsoft.Compute/GetOperation30Min;29507 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:48:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29498 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:48:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29489 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:49:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14942,Microsoft.Compute/GetOperation30Min;29478 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:49:52 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14944,Microsoft.Compute/GetOperation30Min;29470 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:50:23 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14946,Microsoft.Compute/GetOperation30Min;29518 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:50:53 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-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14945,Microsoft.Compute/GetOperation30Min;29508 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:51:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14948,Microsoft.Compute/GetOperation30Min;29492 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:52:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29483 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"status\": + \"InProgress\",\r\n \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '134' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:52:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14950,Microsoft.Compute/GetOperation30Min;29474 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Compute/locations/southcentralus/operations/d47f1fe2-18c5-448e-9260-2cf14eb61fab?p=f163fa7e-5d98-48fb-bc62-c2a84eb54a9c&api-version=2021-11-01 + response: + body: + string: "{\r\n \"startTime\": \"2022-05-18T06:49:05.6152895+00:00\",\r\n \"endTime\": + \"2022-05-18T07:52:50.8796158+00:00\",\r\n \"status\": \"Succeeded\",\r\n + \ \"name\": \"d47f1fe2-18c5-448e-9260-2cf14eb61fab\"\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '184' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:53:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetOperation3Min;14949,Microsoft.Compute/GetOperation30Min;29465 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2?api-version=2021-11-01 + response: + body: + string: "{\r\n \"name\": \"nt2\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt2\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"southcentralus\",\r\n \"tags\": {\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"identity\": {\r\n \"type\": \"UserAssigned\",\r\n + \ \"userAssignedIdentities\": {\r\n \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/AzSecPackAutoConfigRG/providers/Microsoft.ManagedIdentity/userAssignedIdentities/AzSecPackAutoConfigUA-southcentralus\": + {\r\n \"principalId\": \"89908d6c-8e61-4813-b182-e1537dbcc055\",\r\n + \ \"clientId\": \"539158e8-a27f-453c-a688-2099f729416d\"\r\n }\r\n + \ }\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D15_v2\",\r\n \"tier\": + \"Standard\",\r\n \"capacity\": 5\r\n },\r\n \"properties\": {\r\n \"singlePlacementGroup\": + true,\r\n \"upgradePolicy\": {\r\n \"mode\": \"Automatic\"\r\n },\r\n + \ \"virtualMachineProfile\": {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": + \"nt2\",\r\n \"adminUsername\": \"admintest\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": {\r\n + \ \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/e3535abb8b1142ffb819ceed96db3765\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"allowExtensionOperations\": true,\r\n + \ \"requireGuestProvisionSignal\": true\r\n },\r\n \"storageProfile\": + {\r\n \"osDisk\": {\r\n \"vhdContainers\": [\r\n \"https://sfrpcli000004nt21.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt22.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt23.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt24.blob.core.windows.net/vhd\",\r\n + \ \"https://sfrpcli000004nt25.blob.core.windows.net/vhd\"\r\n + \ ],\r\n \"osType\": \"Windows\",\r\n \"name\": + \"vmssosdisk\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\"\r\n },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": \"latest\"\r\n + \ }\r\n },\r\n \"networkProfile\": {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-nt2-nt2\",\"properties\":{\"primary\":true,\"enableAcceleratedNetworking\":false,\"dnsSettings\":{\"dnsServers\":[]},\"enableIPForwarding\":false,\"ipConfigurations\":[{\"name\":\"Nic-nt2\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/subnet_1\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt21/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": false,\r\n \"publisher\": + \"Microsoft.Azure.ServiceFabric\",\r\n \"type\": \"ServiceFabricNode\",\r\n + \ \"typeHandlerVersion\": \"1.1\",\r\n \"settings\": + {\"clusterEndpoint\":\"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\"nodeTypeRef\":\"nt2\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Silver\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\"x509StoreName\":\"My\"},\"enableParallelJobs\":true}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"publisher\": \"Microsoft.Azure.Diagnostics\",\r\n + \ \"type\": \"IaaSDiagnostics\",\r\n \"typeHandlerVersion\": + \"1.5\",\r\n \"settings\": {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"u334upxolvjo23\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n },\r\n {\r\n + \ \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"enableAutomaticUpgrade\": + true,\r\n \"publisher\": \"Microsoft.Azure.Geneva\",\r\n \"type\": + \"GenevaMonitoring\",\r\n \"typeHandlerVersion\": \"2.0\",\r\n + \ \"settings\": {}\r\n }\r\n }\r\n ]\r\n + \ }\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"59f5cbe1-1c10-401a-86f7-a5447aaf75ff\",\r\n \"timeCreated\": \"2022-05-18T06:12:33.166968+00:00\"\r\n + \ }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '6792' + content-type: + - application/json; charset=utf-8 + date: + - Wed, 18 May 2022 07:53:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/GetVMScaleSet3Min;392,Microsoft.Compute/GetVMScaleSet30Min;2572 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster durability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --durability-level --node-type + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"southcentralus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637884490941263713\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-18T05:38:13.9403149+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-18T06:28:27.9033229+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.southcentralus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://warp-test-winfabrp-southcentralus.trafficmanager.net/runtime/clusters/0177dd14-f770-48f2-bd6e-0fc1ae2f6722\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"5167BB24A39AC145BEAAE3F706F7DC0F018DEB20\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n },\r\n {\r\n \"name\": \"nt2\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": false,\r\n \"durabilityLevel\": \"Silver\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogsu334upxolvjo22\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogsu334upxolvjo22.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogsu334upxolvjo22.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogsu334upxolvjo22.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3301' + content-type: + - application/json + date: + - Wed, 18 May 2022 07:53:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,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 + status: + code: 200 + message: OK +version: 1 diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_create_cluster_with_separate_kv.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_create_cluster_with_separate_kv.yaml index 4f72c16409d..dea417350ad 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_create_cluster_with_separate_kv.yaml +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_create_cluster_with_separate_kv.yaml @@ -13,7 +13,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:24 GMT + - Mon, 16 May 2022 22:36:13 GMT expires: - '-1' pragma: @@ -39,16 +39,16 @@ interactions: strict-transport-security: - max-age=31536000;includeSubDomains www-authenticate: - - Bearer authorization="https://login.windows.net/54826b22-38d6-4fb2-bad9-b7b93a3e9c5a", + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", resource="https://vault.azure.net" x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 401 message: Unauthorized @@ -72,7 +72,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -80,9 +80,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/create?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALR1B2NSwTwnYK9XETbs2W63OXhMFx3Fd0tD8d4/RN9D13W243RMFXK8Isn59SgnRv/FxC/5TJSOnnwOuW5f5PGuqrwvwSPyLOJnrzsSz/HnxObMFHu8wDXtOEBh2/dCUJ4ntz5vGPQRmgZTy/qsDyVy1vvq/d3T+4nzj/3vkE3lxtLqKUdhiB+MMgJJyRPizEWl1O5FkYgIppDCl234w/bRjyhbWwenLmpuafBN/6AbkNwsl5iK4WmK1alCEMvNoYMArKnGt46jbMnFPKB2xPJPSn+IaeoPnFre+CXd5g2VDRjSg6UzuTEHXVJziSXB9HlLOVkkFth8YRMzPYcF6XECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCMZEkA0zFTPKvr2qjfGiX0IF+1GtETztTKXQc4c9SrqEOTGAX3PWnPdBlZCzWzpSZx8fspRcwgFIPL90oGfe6wFCceA/2IENveqBrVSvY3u6x4QaPqvjWtzN1D4mmVRaqCSWMu/vrRIhVtrW4JuF0cv4e/s37+aRrErNYvsUgd9k1BxT9McoOr/t5tgfqlNi/GUKBOplxnCb8bZX4XM8AHTZvMOy7yn90cPebfBiDcaJSIyLGtOgiDx/ijCLV+8SF4qW6dave2KYIL98IeJQAyziRgflYWgWk81pQZbqt7dcG2/RLguXG2ersmrDGJ+2zZr+Pa2ZC23Wq5lOSvvh67","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALtcZh1Ks1FcU8mf9hBh4301pLZAJBo2qxRtfcg6wjF7MpJF2C+tNlbX/dsxeksW6wM6t5yk5E5dYUbDjVcTwa/YVZqXEjEcqTWrGIvTuVtgLJd8cPRig5M9/mdVwaGuuNYV3CK+qnUA0vexWQ2bK7QsFX7A5C0vYtfvP2V3oDgBS2hYyhpZElFmHZLrZMRvZghmCX4fMhhLk0PDnrvzsa9sZF22rAk6jD8TfWQfzpaDKRLmXLgYaRZ0KI63ityC1xor0ZL1iDgMQKhKNhpKFqkQbxvCaE9VylInMZvOixtujTAD9fKwKRmlck2JiUsqH7eLjBH8bu7FlOv3vTk464kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCPvT8IBGmw6yQjrrPe8u4AJTa9xu7V6Fqh72aPp8tSdhv4syJT/Rq/MNPOtCMv0qswAikOPxueAx1VFzXrUeHrwaylHvxsOELgRqz0szyGOuGGR6T3eMhra70RhjH3Zg65E28X6lgfymq7XHn+YblDSVVYYXmNuisqEtdnHFElPoNLrlidRAScW6v0UcyA4Lo8rtXUsbK2dBaegOv11YxBv4ibukEjbnRCyttORIFA0eOKOU5FKZE5u5owSkTUtIC8FBUq+bt9GFsUzpDigHzB3xITV98bAMPMShpTi0yqcQZ+qLRkT09esnVuEB7lwVqgufqCiPMtB9jV8jQrX9cZ","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"933b480270ee40de8ff24cdc69c32a5f"}' + time based on the issuer provider. Please check again later.","request_id":"9e9f7cf632e549ed89976261521c937d"}' headers: cache-control: - no-cache @@ -91,11 +91,11 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:27 GMT + - Mon, 16 May 2022 22:36:15 GMT expires: - '-1' location: - - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=933b480270ee40de8ff24cdc69c32a5f + - https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0&request_id=9e9f7cf632e549ed89976261521c937d pragma: - no-cache strict-transport-security: @@ -103,11 +103,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 202 message: Accepted @@ -123,7 +123,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -131,9 +131,9 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALR1B2NSwTwnYK9XETbs2W63OXhMFx3Fd0tD8d4/RN9D13W243RMFXK8Isn59SgnRv/FxC/5TJSOnnwOuW5f5PGuqrwvwSPyLOJnrzsSz/HnxObMFHu8wDXtOEBh2/dCUJ4ntz5vGPQRmgZTy/qsDyVy1vvq/d3T+4nzj/3vkE3lxtLqKUdhiB+MMgJJyRPizEWl1O5FkYgIppDCl234w/bRjyhbWwenLmpuafBN/6AbkNwsl5iK4WmK1alCEMvNoYMArKnGt46jbMnFPKB2xPJPSn+IaeoPnFre+CXd5g2VDRjSg6UzuTEHXVJziSXB9HlLOVkkFth8YRMzPYcF6XECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCMZEkA0zFTPKvr2qjfGiX0IF+1GtETztTKXQc4c9SrqEOTGAX3PWnPdBlZCzWzpSZx8fspRcwgFIPL90oGfe6wFCceA/2IENveqBrVSvY3u6x4QaPqvjWtzN1D4mmVRaqCSWMu/vrRIhVtrW4JuF0cv4e/s37+aRrErNYvsUgd9k1BxT9McoOr/t5tgfqlNi/GUKBOplxnCb8bZX4XM8AHTZvMOy7yn90cPebfBiDcaJSIyLGtOgiDx/ijCLV+8SF4qW6dave2KYIL98IeJQAyziRgflYWgWk81pQZbqt7dcG2/RLguXG2ersmrDGJ+2zZr+Pa2ZC23Wq5lOSvvh67","cancellation_requested":false,"status":"inProgress","status_details":"Pending + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALtcZh1Ks1FcU8mf9hBh4301pLZAJBo2qxRtfcg6wjF7MpJF2C+tNlbX/dsxeksW6wM6t5yk5E5dYUbDjVcTwa/YVZqXEjEcqTWrGIvTuVtgLJd8cPRig5M9/mdVwaGuuNYV3CK+qnUA0vexWQ2bK7QsFX7A5C0vYtfvP2V3oDgBS2hYyhpZElFmHZLrZMRvZghmCX4fMhhLk0PDnrvzsa9sZF22rAk6jD8TfWQfzpaDKRLmXLgYaRZ0KI63ityC1xor0ZL1iDgMQKhKNhpKFqkQbxvCaE9VylInMZvOixtujTAD9fKwKRmlck2JiUsqH7eLjBH8bu7FlOv3vTk464kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCPvT8IBGmw6yQjrrPe8u4AJTa9xu7V6Fqh72aPp8tSdhv4syJT/Rq/MNPOtCMv0qswAikOPxueAx1VFzXrUeHrwaylHvxsOELgRqz0szyGOuGGR6T3eMhra70RhjH3Zg65E28X6lgfymq7XHn+YblDSVVYYXmNuisqEtdnHFElPoNLrlidRAScW6v0UcyA4Lo8rtXUsbK2dBaegOv11YxBv4ibukEjbnRCyttORIFA0eOKOU5FKZE5u5owSkTUtIC8FBUq+bt9GFsUzpDigHzB3xITV98bAMPMShpTi0yqcQZ+qLRkT09esnVuEB7lwVqgufqCiPMtB9jV8jQrX9cZ","cancellation_requested":false,"status":"inProgress","status_details":"Pending certificate created. Certificate request is in progress. This may take some - time based on the issuer provider. Please check again later.","request_id":"933b480270ee40de8ff24cdc69c32a5f"}' + time based on the issuer provider. Please check again later.","request_id":"9e9f7cf632e549ed89976261521c937d"}' headers: cache-control: - no-cache @@ -142,7 +142,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:28 GMT + - Mon, 16 May 2022 22:36:15 GMT expires: - '-1' pragma: @@ -152,11 +152,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 200 message: OK @@ -172,7 +172,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -180,7 +180,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALR1B2NSwTwnYK9XETbs2W63OXhMFx3Fd0tD8d4/RN9D13W243RMFXK8Isn59SgnRv/FxC/5TJSOnnwOuW5f5PGuqrwvwSPyLOJnrzsSz/HnxObMFHu8wDXtOEBh2/dCUJ4ntz5vGPQRmgZTy/qsDyVy1vvq/d3T+4nzj/3vkE3lxtLqKUdhiB+MMgJJyRPizEWl1O5FkYgIppDCl234w/bRjyhbWwenLmpuafBN/6AbkNwsl5iK4WmK1alCEMvNoYMArKnGt46jbMnFPKB2xPJPSn+IaeoPnFre+CXd5g2VDRjSg6UzuTEHXVJziSXB9HlLOVkkFth8YRMzPYcF6XECAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCMZEkA0zFTPKvr2qjfGiX0IF+1GtETztTKXQc4c9SrqEOTGAX3PWnPdBlZCzWzpSZx8fspRcwgFIPL90oGfe6wFCceA/2IENveqBrVSvY3u6x4QaPqvjWtzN1D4mmVRaqCSWMu/vrRIhVtrW4JuF0cv4e/s37+aRrErNYvsUgd9k1BxT9McoOr/t5tgfqlNi/GUKBOplxnCb8bZX4XM8AHTZvMOy7yn90cPebfBiDcaJSIyLGtOgiDx/ijCLV+8SF4qW6dave2KYIL98IeJQAyziRgflYWgWk81pQZbqt7dcG2/RLguXG2ersmrDGJ+2zZr+Pa2ZC23Wq5lOSvvh67","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"933b480270ee40de8ff24cdc69c32a5f"}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending","issuer":{"name":"Self"},"csr":"MIICrjCCAZYCAQAwHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALtcZh1Ks1FcU8mf9hBh4301pLZAJBo2qxRtfcg6wjF7MpJF2C+tNlbX/dsxeksW6wM6t5yk5E5dYUbDjVcTwa/YVZqXEjEcqTWrGIvTuVtgLJd8cPRig5M9/mdVwaGuuNYV3CK+qnUA0vexWQ2bK7QsFX7A5C0vYtfvP2V3oDgBS2hYyhpZElFmHZLrZMRvZghmCX4fMhhLk0PDnrvzsa9sZF22rAk6jD8TfWQfzpaDKRLmXLgYaRZ0KI63ityC1xor0ZL1iDgMQKhKNhpKFqkQbxvCaE9VylInMZvOixtujTAD9fKwKRmlck2JiUsqH7eLjBH8bu7FlOv3vTk464kCAwEAAaBLMEkGCSqGSIb3DQEJDjE8MDowDgYDVR0PAQH/BAQDAgG+MB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAJBgNVHRMEAjAAMA0GCSqGSIb3DQEBCwUAA4IBAQCPvT8IBGmw6yQjrrPe8u4AJTa9xu7V6Fqh72aPp8tSdhv4syJT/Rq/MNPOtCMv0qswAikOPxueAx1VFzXrUeHrwaylHvxsOELgRqz0szyGOuGGR6T3eMhra70RhjH3Zg65E28X6lgfymq7XHn+YblDSVVYYXmNuisqEtdnHFElPoNLrlidRAScW6v0UcyA4Lo8rtXUsbK2dBaegOv11YxBv4ibukEjbnRCyttORIFA0eOKOU5FKZE5u5owSkTUtIC8FBUq+bt9GFsUzpDigHzB3xITV98bAMPMShpTi0yqcQZ+qLRkT09esnVuEB7lwVqgufqCiPMtB9jV8jQrX9cZ","cancellation_requested":false,"status":"completed","target":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003","request_id":"9e9f7cf632e549ed89976261521c937d"}' headers: cache-control: - no-cache @@ -189,7 +189,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:40 GMT + - Mon, 16 May 2022 22:36:26 GMT expires: - '-1' pragma: @@ -199,11 +199,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 200 message: OK @@ -219,7 +219,7 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US @@ -227,7 +227,7 @@ interactions: uri: https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/?api-version=7.0 response: body: - string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe","x5t":"rzaWaFZhtjDvjN44Eu4RyozSYeI","cer":"MIIDQjCCAiqgAwIBAgIQELYMbZ+SQBqka341kECVMTANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIyMDQxMTExMTQzNFoXDTIzMDQxMTExMjQzNFowHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALR1B2NSwTwnYK9XETbs2W63OXhMFx3Fd0tD8d4/RN9D13W243RMFXK8Isn59SgnRv/FxC/5TJSOnnwOuW5f5PGuqrwvwSPyLOJnrzsSz/HnxObMFHu8wDXtOEBh2/dCUJ4ntz5vGPQRmgZTy/qsDyVy1vvq/d3T+4nzj/3vkE3lxtLqKUdhiB+MMgJJyRPizEWl1O5FkYgIppDCl234w/bRjyhbWwenLmpuafBN/6AbkNwsl5iK4WmK1alCEMvNoYMArKnGt46jbMnFPKB2xPJPSn+IaeoPnFre+CXd5g2VDRjSg6UzuTEHXVJziSXB9HlLOVkkFth8YRMzPYcF6XECAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFGzwOOAjEgnT90Hz5SdGWopCekKkMB0GA1UdDgQWBBRs8DjgIxIJ0/dB8+UnRlqKQnpCpDANBgkqhkiG9w0BAQsFAAOCAQEAJWiog7MnAMLIBS5cLGTnjJpxJuvPibQ/JzPFKqZKuN4GxFFXGEAbgskrjNfUF1DpOLvmcR6YV7rBVdhhjzCvuz3HqtdoooegrGwgtY5bnb3q4DAazbTFFOgEJrQ2EgBkhN0RghSwmW6oie7RAhCOXc3A6Nhc9L4RCv8+wFb7e8hRAoQAYOQioSZijWqwPLepftl58Hkz36WHysSy87M4Rre2GQSH3Lfd4ewYM9Z2YBnHzipeQ9LF8m8KQxmkfDZk5zw1DtXyrPmodwLFIPV1Hkzvz6IF+1jClLVQYQyU4WQwuhy4cFrTapa4jR645xCL7l0wtJFP/36G8mSdFXYCYA==","attributes":{"enabled":true,"nbf":1649675674,"exp":1681212274,"created":1649676274,"updated":1649676274,"recoveryLevel":"CustomizedRecoverable+Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1649676267,"updated":1649676267}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' + string: '{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05","kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05","sid":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05","x5t":"JZRy1Mm2oI4H-MjX7msMuFXwcsg","cer":"MIIDQjCCAiqgAwIBAgIQfIOmxYPKTc6+eWHV1hO+NDANBgkqhkiG9w0BAQsFADAeMRwwGgYDVQQDExNDTElHZXREZWZhdWx0UG9saWN5MB4XDTIyMDUxNjIyMjYxN1oXDTIzMDUxNjIyMzYxN1owHjEcMBoGA1UEAxMTQ0xJR2V0RGVmYXVsdFBvbGljeTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALtcZh1Ks1FcU8mf9hBh4301pLZAJBo2qxRtfcg6wjF7MpJF2C+tNlbX/dsxeksW6wM6t5yk5E5dYUbDjVcTwa/YVZqXEjEcqTWrGIvTuVtgLJd8cPRig5M9/mdVwaGuuNYV3CK+qnUA0vexWQ2bK7QsFX7A5C0vYtfvP2V3oDgBS2hYyhpZElFmHZLrZMRvZghmCX4fMhhLk0PDnrvzsa9sZF22rAk6jD8TfWQfzpaDKRLmXLgYaRZ0KI63ityC1xor0ZL1iDgMQKhKNhpKFqkQbxvCaE9VylInMZvOixtujTAD9fKwKRmlck2JiUsqH7eLjBH8bu7FlOv3vTk464kCAwEAAaN8MHowDgYDVR0PAQH/BAQDAgG+MAkGA1UdEwQCMAAwHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMB8GA1UdIwQYMBaAFMiW0EVGQr819bnCQXe324QK/8PFMB0GA1UdDgQWBBTIltBFRkK/NfW5wkF3t9uECv/DxTANBgkqhkiG9w0BAQsFAAOCAQEAibQrWX1eYpolFo+jNOeu+kYb3pC2H/KbbRxgf3TZu+bLKgCsVloaZCEyuA9WBMpVzX1yRU9wHPzstLqVoIsW9JKVKi2ka+9E/10vHAIqHF1vkMDCxc5gleOOYJHf8U96hU16/hUEpu0tET3U+UGoA18fiyohVGugtKT0XmwutwJf5kqCP2YDrpbMuJrMwBvY0aINWGLI8ad12Moll8jV1ZvP6VoO7i8A+QiCGY1oeLK8hKvpqEJjrOwRTRTyH9zWQN63/ZvpRGAsg4X8QxyJqDvO97xr8Xs1cdTb8DDSnwQU94C2vBCbD7883BML3FUomizwHtQEC54vAI5A2cTd5A==","attributes":{"enabled":true,"nbf":1652739977,"exp":1684276577,"created":1652740577,"updated":1652740577,"recoveryLevel":"CustomizedRecoverable+Purgeable"},"policy":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=CLIGetDefaultPolicy","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1652740575,"updated":1652740575}},"pending":{"id":"https://sfrp-cli-kv-000002.vault.azure.net/certificates/sfrp-cli-000003/pending"}}' headers: cache-control: - no-cache @@ -236,7 +236,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:42 GMT + - Mon, 16 May 2022 22:36:25 GMT expires: - '-1' pragma: @@ -246,11 +246,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 200 message: OK @@ -268,12 +268,12 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T11:23:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T22:35:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -282,7 +282,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:42 GMT + - Mon, 16 May 2022 22:36:27 GMT expires: - '-1' pragma: @@ -310,12 +310,12 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-04-11T11:23:42Z"},"properties":{"provisioningState":"Succeeded"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T22:35:37Z"},"properties":{"provisioningState":"Succeeded"}}' headers: cache-control: - no-cache @@ -324,7 +324,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:43 GMT + - Mon, 16 May 2022 22:36:27 GMT expires: - '-1' pragma: @@ -352,21 +352,22 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?$filter=resourceType%20eq%20%27Microsoft.KeyVault%2Fvaults%27&api-version=2015-11-01 response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/bez-rg/providers/Microsoft.KeyVault/vaults/bez-kv","name":"bez-kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.KeyVault/vaults/python-devops-key","name":"python-devops-key","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/python-sdk-test/providers/Microsoft.KeyVault/vaults/SDKAutoPipelineSecrets","name":"SDKAutoPipelineSecrets","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/yishitest/providers/Microsoft.KeyVault/vaults/ystestkv","name":"ystestkv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/aldesou-biaj-host/providers/Microsoft.KeyVault/vaults/aldesoubiajhost-kv","name":"aldesoubiajhost-kv","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/demodhtst/providers/Microsoft.KeyVault/vaults/demodhtst","name":"demodhtst","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg77j7grfggrjkfav4i4ryvu3g6unz226nnmbilfmfx2ewo7g57w7vyhyhnhxo54wwz/providers/Microsoft.KeyVault/vaults/clitestrg77j7grfggrjk","name":"clitestrg77j7grfggrjk","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgs2wczf45z6gtbfcpbnkabxy4fdcvmhmom4tf7rkkxel5itdpe3bpgk5k4j5da3ofn/providers/Microsoft.KeyVault/vaults/clitestrgs2wczf45z6gt","name":"clitestrgs2wczf45z6gt","type":"Microsoft.KeyVault/vaults","location":"southcentralus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam30/providers/Microsoft.KeyVault/vaults/shkadam30KVd4c32c5e82","name":"shkadam30KVd4c32c5e82","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam31/providers/Microsoft.KeyVault/vaults/shkadam31KVf27a5a5647","name":"shkadam31KVf27a5a5647","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam32/providers/Microsoft.KeyVault/vaults/shkadam32KV46d939f964","name":"shkadam32KV46d939f964","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam33/providers/Microsoft.KeyVault/vaults/shkadam33KV86a4958326","name":"shkadam33KV86a4958326","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/knts136/providers/Microsoft.KeyVault/vaults/knts136KV1bced7765d","name":"knts136KV1bced7765d","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/shkadam35/providers/Microsoft.KeyVault/vaults/shkadam35KV8aa380099c","name":"shkadam35KV8aa380099c","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/jxu567/providers/Microsoft.KeyVault/vaults/jxu567","name":"jxu567","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{"clusterName":"jxu567","resourceType":"Service + Fabric"}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/knts131/providers/Microsoft.KeyVault/vaults/knts131KV5806ba2613","name":"knts131KV5806ba2613","type":"Microsoft.KeyVault/vaults","location":"westus2","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/alsantamcli/providers/Microsoft.KeyVault/vaults/alsantamcli","name":"alsantamcli","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rgxrli7yfvkt2d6vkcq3yuvgncjogi7z5vfu4meopw27mhvku5xxtowdcdfewwgpk5e/providers/Microsoft.KeyVault/vaults/clitestrgxrli7yfvkt2d","name":"clitestrgxrli7yfvkt2d","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/imtrg/providers/Microsoft.KeyVault/vaults/ilanakv","name":"ilanakv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/mani-rg/providers/Microsoft.KeyVault/vaults/mani-sf-keyvault","name":"mani-sf-keyvault","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/ashank1/providers/Microsoft.KeyVault/vaults/ashank1kv","name":"ashank1kv","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sindoria-rg01/providers/Microsoft.KeyVault/vaults/sindoria-kv11","name":"sindoria-kv11","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/knts13/providers/Microsoft.KeyVault/vaults/knts13-kv4","name":"knts13-kv4","type":"Microsoft.KeyVault/vaults","location":"eastus","tags":{}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '4912' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:42 GMT + - Mon, 16 May 2022 22:36:27 GMT expires: - '-1' pragma: @@ -394,21 +395,21 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002?api-version=2021-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"zhiyihuang@microsoft.com","createdByType":"User","createdAt":"2022-04-11T11:23:49.462Z","lastModifiedBy":"zhiyihuang@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-04-11T11:23:49.462Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","accessPolicies":[{"tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","objectId":"a7250e3a-0e5e-48e2-9a34-45f1f5e1a91e","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002","name":"sfrp-cli-kv-000002","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"alsantam@microsoft.com","createdByType":"User","createdAt":"2022-05-16T22:35:42.542Z","lastModifiedBy":"alsantam@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-16T22:35:42.542Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["all"],"secrets":["all"],"certificates":["all"],"storage":["all"]}}],"enabledForDeployment":true,"enabledForTemplateDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":7,"vaultUri":"https://sfrp-cli-kv-000002.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' headers: cache-control: - no-cache content-length: - - '1026' + - '1022' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:45 GMT + - Mon, 16 May 2022 22:36:27 GMT expires: - '-1' pragma: @@ -426,7 +427,7 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-service-version: - - 1.5.339.0 + - 1.5.372.0 status: code: 200 message: OK @@ -442,24 +443,24 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.9.6 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 azure-keyvault/7.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe?api-version=7.0 + uri: https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05?api-version=7.0 response: body: - string: '{"value":"MIIKUAIBAzCCCgwGCSqGSIb3DQEHAaCCCf0Eggn5MIIJ9TCCBhYGCSqGSIb3DQEHAaCCBgcEggYDMIIF/zCCBfsGCyqGSIb3DQEMCgECoIIE/jCCBPowHAYKKoZIhvcNAQwBAzAOBAi7ZIL45TGIlwICB9AEggTY0ctDW1Ka8RVvbcOWi1smyvmlyZ0ynvIRqKQqhrS3iR6VHSUgHQxa/QC/iOmeO3QrliKZBrXiiPnxTDCx+wsuTx3kDm++40dYFTkTW7+1SOE9NfixdaYscz34dtkSUZcF9+UEt0XQPaL+J46UkJ7m7z/Nx1AIh/jaS0g9L4rhttLqr/KWVvbh/1Os/U+zLuadYG9oRPo+OplelvWStSQgHeo4ijzQ6zFE4DRnT+WwzuMpOBMUz7H0m1U2cZk5kpAKAwd2wwGDRSQiSnI1J1n5zh0dyNPXazTnSFjnrldgAjqKvbfJG3RJc9kbvg8wKOHsy6+67wXyXZq0/4Hu3fGsP+GAWFIObN28Ui4UbF/+hxu0p0I33SeaooNEOF/wOsJk+4xSAekyhhfzX6sFZfw3sKHf5YaXCH5tUrhPofLOQaKWQa3uLreEahuTZZkYMuH4coQIzMEfxuBQQtbICOdyLxt+fTL7GYHABchGQkAFIIgSKvaNos0CPXi8MMrPpgBx4PkvQNdRsacEp6hU4pYKPnu2FLVPePXDdPUj/unamP6mzTLs/YaQpUmak/mLiSb/dF+vyNz8D8zWR/qw6z/ZndEI0k2vknfJeSDMX5NU/FM8pgTJTzKhuFtY5kEgDvaoeLPMB+pOawUgEzgKTDzuqyuJrMMrxtt0XMf8DFL0ApXaqa/pCGGi3JT3aQFZI2U9YMJyLhdwPUSW/1AttCpFoJ2RQT8X8D+d0XVcrZxR0fTHS2xsJVCZ39dxC5NRDd0WS+djn2CUlk1xVR4PH9Dltheq2uiSwtrS3KtV/ouz7NHspPyz8VWV/qWH0dL/C/Csr9BwXNeeLFKxHDCe54oS4gOrQGfRTNzxKS6+qkDw8EGAinI32eluyDtEadxo+AnhjFuPpfETGayH7HVB8DBgJWWBQqkZZzLExrdhXgNaoq4yFWMUh8diAnVETF7ZqhwU7Q3jE4S/n6IAe2i5UI6Ljbh6oNwHPJy+bp6BmRl9aAImj3eu1qQf4hYJ7qdM3kXtDHCBy9CM/Lc/OC2obqsgKdC8xucH5ahshSznl0hlHP0wkUa88BJrddGrcnzyCb5mitajd5lraX476CdMcGFvQ9rvthOxcrtQz9ynzp0RTVTDala1mRXVzt6H1S2ihy/JEcnozplCL+Ipb+P2zYq4wWtEDwL9hRZGjxdb5HNgN/3www8JlXYHeL979NVrF3+MHW0fNkyS1A2dSqVti1FE9F1dk03ZWfb0Htu9k0m6KAv6R+7O7saa1uQyabkiI0gMCFxg8ur4h2GVr7LoHJgpzsrMAspyH0aT4K8fAq/BxcTOkq1Aiz5XIez6BpfeUQgjtetJkHW5ZADp9XKlWdazUf4Srpft1PEMrsOlXHFM4ieTPdDBI5GuQCXb+X+CmL2RjoiHx2eEH+40M91Na1MIgNWd8V13DxHa1aefA6yWtHl0nEr5eXQAiY6dC3KmVr50bp1lW3dXe9YDUSksWXvwOdqkLiwFRnC2UsoRCQOog1qHEosrsjOzWXUCNZNf3ch3zsVp2qfjkg/qbjda3C4iw/5PEsWmKdMDmHWqaTRgSds3eZVWgxW6shf6JF1DqEQSNfXtDEDKROZiAG1mTlA0SA/KYKuRaq1ckUh3XpF0gE9TpgZrBZ880zGB6TATBgkqhkiG9w0BCRUxBgQEAQAAADBXBgkqhkiG9w0BCRQxSh5IAGQAOQA2ADcAMQAzADMAMQAtADMAMAAwADIALQA0ADIAYgA3AC0AOABjAGQAZQAtADMAOAA3AGYANwAxAGIAZAA4AGYAMQA0MHkGCSsGAQQBgjcRATFsHmoATQBpAGMAcgBvAHMAbwBmAHQAIABFAG4AaABhAG4AYwBlAGQAIABSAFMAQQAgAGEAbgBkACAAQQBFAFMAIABDAHIAeQBwAHQAbwBnAHIAYQBwAGgAaQBjACAAUAByAG8AdgBpAGQAZQByMIID1wYJKoZIhvcNAQcGoIIDyDCCA8QCAQAwggO9BgkqhkiG9w0BBwEwHAYKKoZIhvcNAQwBAzAOBAjtjfLj9r/krwICB9CAggOQAvsDBc3YVKZHjrZ8jAGR2InrXqavszA6OlAlSf4O3BxxCIlzMqzx5F0A5kg0aRNZc8fpqCpmNZAlq4HqEJKRoVzWJP/k8jUT16X69ZgIt9kbmzjUNz+qgT/DUzkIV7LlguNxC+oFeEE15heUb70ENfwBXOTiM+HbQhdasOn0pHD11dvzYkYJNb1/r2G+rupEH90DeIdnGr4R3ovDD5UfaWs+1YtdMu+XYpVj2bFfCmT9/qGC6C63qOHCNIe6uH3/DBrIwiy2/lwXp+i/ojK9Og8CmW5kL4ZNb1MZsyxVjUkMRrDV8kBBrwMS8/0b8Ydeqllwm/G367NKJmKVbsBw0EPoWcC2PoHZ8/xzx2I6IKTG8qMor8+68U6bQ4OmkFfKAtF15lD7oWkOozjg8/Dm64nFuTxhhPfv/8WcDwCu58cESHk3Xh7yub4HrLp8oIuM8vjPtvh540fYHdc2lp4MiubZvrAMRS1t+wxNdKCBe6Zr+/8sQgp30I3KYTimgxQbxvWysmjdnZ1AFQF7VI0ZSl9k8+MrsHoeJ3eV+rH0dFf6ZmPJehZRTbQ+3IZFzL69metpRyhU43qkkgLiDw0gWt2o6tTwZWtyAEODMKObj3Wm1KXfH6MQfMiWkvozo26MX8JWJR/hAKFTqAzrGkIzAj4iQsAlYy8WtPOTBUxtcRCmsoO4NFuXzZQy24FpZxijwvzQviyOA4HIac41yRk7TPx2jK6fPoIH1BZJq73MSNrvKEHpgLPrtwh+5kOvdWL/iOCBT2pqz4y0OsAgYggPt85qDCuy7mo53NadIMDgeC/cXhlilFQiX1Xq9Uc0a0heZkl5cvIjMc1C1m8o3EZKd0aN2y9zX2rHkgxO0zEdg3abcpcT2HJoZomKFEUfGmGYy32sYpX5K74uolMG+dNw0VPZ0oHEDHfgc/LVU15dm+vzqvYr3zRG6ncb2gL8XJm35xsgctkfkWWdJfBaeVkoBMgo/GjYVRzW/b7JtYQ5q/4BgjGdmiiLIvcan/pF9DwJiOUu1hS/h85f31wCovhpenc6pppq6ffXXN1zYgdqZZxIQnKq064O7wUkRgIvbKRp84cYeHuPLwK9sJpZUpaZY8BCjbqQcrcKz5v6rVlqgob7+Ewc0W7RjxmHFmN0k+qJIT+P6jGwaIQsqtCg5L98RuLSDlmEaNRFqdLtQ9E/wIPr27j1yn1h95vlILK5VvJNMDswHzAHBgUrDgMCGgQU9IvPSIi3yU1QDg5iQqEIWS8cofAEFJCH3T5NONb2EvD5AxtP+UVCg3D1AgIH0A==","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe","managed":true,"attributes":{"enabled":true,"nbf":1649675674,"exp":1681212274,"created":1649676274,"updated":1649676274,"recoveryLevel":"CustomizedRecoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"}' + string: '{"value":"MIIKSAIBAzCCCgQGCSqGSIb3DQEHAaCCCfUEggnxMIIJ7TCCBg4GCSqGSIb3DQEHAaCCBf8EggX7MIIF9zCCBfMGCyqGSIb3DQEMCgECoIIE9jCCBPIwHAYKKoZIhvcNAQwBAzAOBAgJpKpAfhaQ5wICB9AEggTQaH2Mlz/ASqxatyhmI8CFLRyBJNa3tq04P76z1rwaM00wJjAox6gOXjua0vrl6kLZjwoyE4S9dyrlI01jSppMrAeofQCXZn1/qJ8vBvMN6i+FuQKmXLUmqHTNUCRQOa0yioIhlIH4LjOhQ30Yl3JDWLP1xvkWhw5u2HN1IKN/Lm6t4dN6wgbE17Jl4EgkOqaRT3To2K9PTgz9gxnB23HxxPpxxPP4+IZLy6QSj4LVEWdEJGWjPpy3TAz6uuuqI04MnNiXNQ9kKvqyDs1g40RSgIgIhxWG6c9GGx8f76BdEJKtWPOeQmUa1ClC6emFFlzBaVaUXaPdJFj6Rl4/RPNACNQeBuIlu6zSwFe7dDmzc3d9smKzaFJYcPHueWsiLjJfJTVlZ64CLfg2W0sqYkobqBI3S4SNT/d263Ivny4bsjaW0oAbF6LI1VzgYNAmG9zyXzY6ZNuGFTk19BXNuhohlL1Bzf8xpmSV03P69+t6IaMjrXYMVfuzBrDAXApFP6VrmOnI0Fb97sf0oaXoN3j/F7TcVwtfZJaPs/1z1XX1NFw4Q3nHwQDob9cpR7QAcxmYVrC5uUHZ4garJh26SS2CL7TVWf6Zgj4upGQwDrW47swHf5Lk4SCJjohCz3uxzFevuQIe9rpECS5reRW7scj0RcR9Moy53q3wS4ZjEYqb7AyD7g/dTG4pTgLb+VznUvVQDKSPrk/REo4HGghzCbnCFuSjdbAM1gXxeomokyFobMIEg+oAx4j9/VjuNmqe3xvF2AIT3p6uXZol+PoQSTG7N7zi8WeaH7qEHnjevlM7AyDbTFT5uwldNmy+vM9i3A4WP9w9eq0QM9CZu7PIlSNPOWJCndOuc9Q7sTGV8PestIQVLPGhuhhYf7nIE6tZ3dyXeM04m4OVlxAoW1zopAcqy6yNpMYSEcEdJ28SUMIhz4kLp1IpBrH/QQj5pArjbutJnt6Gv6oKhUwvbsZSCr5tx2JH77YNNEgpWjbl407GMa67J5bccTr2zflThoffuJJTqXkyN5a5AcU5bSCHzc3Lv7gYJPu4tR1M5yM3GrZm1IJPgUnwY0xJf1/ZQOtitsjz9qmPuFgUfgYzJi0gpEeV+WI+cSLGNHD2bQkDtmKihhAH1MUdZFPiraZEEefMRfiWHKe0UrdGcB9R6AoZ8bCDuha8/OxiF0yb/JlLj6WrhWtWgcrpgOANO+nqK572+HG0figrJHg/aauvskHUYeYF1EG9mwMQgBhif0iZcSbtVi9UvQ/4+2Vc0+fr61ZHjMV0Mu3W6RDkM71dFShjMm+KYwJiU/e+OtIQJhFAAjkVwuwTYrmFMP41zRuV/IPIIcQsfGUsabEcyHCpDMGBZy1Zqt1hBqbeF83I/ZKeG8ZdSxj/QplamsHh4WihgF4alX5XnsDQDy+wBl2mhfAc6ZjKRDnutBfHo1GWDuGhsbgJV+qPNhOhDnnUV+b5WlIAOZ+Hr20Xsq4KjQw0hcML5cR+wT38jW4ue8ozD94Gw1mBcS9XYcAQr1RiNWSDiVHNOQQ0R5XioIF+dWFSR3xH18rMmTRXfF7rOM4WrZ/kbNA3sbFNKknqfmhwMheJYHgWROfwADKu4+gtoF129enQ8fkcVk24nbxlW+/xrWS8+ED6yFYxgekwEwYJKoZIhvcNAQkVMQYEBAEAAAAwVwYJKoZIhvcNAQkUMUoeSAA4AGEANAAxADUAZQAxAGUALQBlADMANQBjAC0ANABiAGQAYQAtADkAYQBiAGUALQA5AGIANAA3ADcAYgA5ADgANQA0ADgAYzB5BgkrBgEEAYI3EQExbB5qAE0AaQBjAHIAbwBzAG8AZgB0ACAARQBuAGgAYQBuAGMAZQBkACAAUgBTAEEAIABhAG4AZAAgAEEARQBTACAAQwByAHkAcAB0AG8AZwByAGEAcABoAGkAYwAgAFAAcgBvAHYAaQBkAGUAcjCCA9cGCSqGSIb3DQEHBqCCA8gwggPEAgEAMIIDvQYJKoZIhvcNAQcBMBwGCiqGSIb3DQEMAQMwDgQIP9k+nMxlHWkCAgfQgIIDkFEezWXuUAWVuwA6KEiLADeXxock93JX8Haz5dXoA8/ntA5cuogCTq+2tqQBxuYHKKL1F5jwgTacIaeTV0jmwnSvmw8A5NQz8e0ZbhWMrHym8Ty7WCz3O2YUavxIfbDmCmphuEwA3nRVtYEG7Pbuo/bSVT4uNug633kVrRLclDnBVwqx2fkrQoBclyWg4T63xG3WapmZB5d3L/xvXyqt8MQGmL8jQJtWa0F9vCYhCbnHSzzG/B4Bhs1Ew+jub6WoleK75KkgZwcSNcpvlPvU4bj70IymzxGjAYDVbTYIHoKNsIQsj8/WakWAwokARPs1WCcuUrdG2Ucc3Qfz/5dGw8YcF9Z5GbO60g/wK+Wf5plbcNNIUFaL+mUx8GdAlykE55rq7K150FDzRk8k+bRtAAHVbg7K8dAqAZbkEVL56Ynx/LBUbr3Nibj3Y+sDpg/04NN8mjuNi3wx4pPabCOkQ6H+UBIJcwF8WSSoepvMaM6EYf9u1h4frR04qQEiuzWH2vRov3ROxN4Ald4K3hpvf/t6iK5YRNwpBxFImkd8I6qVEoTYtUCdjdjLFktEyJWXb1URiPpKIW6YrG9TJWcdrpqgyR7zCdEFK0E7DswFuzxOJPYY0FkcLBggXXA+zgpUBtY89yz3NdFjsi9YmQsGYG0wmSuc5xbU+BJ4TxgSR3xRcfdDhVq91FU/L/evGq8SLtQRoIjtx4gqkYDmBVrrnJvm3QQDN8tbJ9RmwjQaveRayh2XlVM96tzwOh1lxYNkWZ9AKfJIcBHBW7gS8BVTUHtrmj1kr7DZlqLsaYa307xhfnyNVUTK3d1/1ngqfJgplnYVS9Y5VgbXfIH75RgRY9W7BIoDulqQAwy/eDKDniyhivNlgtDMLF4FLjluzVfgBij/5aOw7yf3IzbKIAsaC/vHDzLumm3T4KbW4Ff+d20jJxiApI7W0HaDqYhmc4tTm90wut6XqHbeZttTXueQCmQbFAnLgy5kO3/LxYXCf2YzcKKXuRuv3BXpCOuzIfyjyGeDcKO1wN8GWvctfpgoi9Kv7ZTAr4N10a1r8t5+i5w0An88pJdiq36xCr7SrlZe9kFIEdX+aFkVfiu4FHhhTEYFy9IRqbYvjjhNtcsKk0eFOAYZCWUVXUBOiUBajuuqtwKCiV1o0bDm5yM1qd9z5sjKBXVBahtOaf8hnLSYxfwrLXswbGWF1rYYqEN+Kh1taDA7MB8wBwYFKw4DAhoEFDODATbX6NZUNQ0K9J1IZrXwXQGvBBRwQ1b9SeZaM7Rm0OSHh7/AIDkP4QICB9A=","contentType":"application/x-pkcs12","id":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05","managed":true,"attributes":{"enabled":true,"nbf":1652739977,"exp":1684276577,"created":1652740577,"updated":1652740577,"recoveryLevel":"CustomizedRecoverable+Purgeable"},"kid":"https://sfrp-cli-kv-000002.vault.azure.net/keys/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"}' headers: cache-control: - no-cache content-length: - - '3960' + - '3948' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:46 GMT + - Mon, 16 May 2022 22:36:28 GMT expires: - '-1' pragma: @@ -469,11 +470,11 @@ interactions: x-content-type-options: - nosniff x-ms-keyvault-network-info: - - conn_type=Ipv4;addr=167.220.255.106;act_addr_fam=InterNetwork; + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; x-ms-keyvault-region: - westus x-ms-keyvault-service-version: - - 1.9.358.1 + - 1.9.395.1 status: code: 200 message: OK @@ -685,9 +686,9 @@ interactions: "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": - {"value": "My"}, "certificateThumbprint": {"value": "AF3696685661B630EF8CDE3812EE11CA8CD261E2"}, + {"value": "My"}, "certificateThumbprint": {"value": "259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -709,12 +710,12 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: POST uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202204111924","name":"AzurePSDeployment-202204111924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"AF3696685661B630EF8CDE3812EE11CA8CD261E2"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"7523fb72-3e42-4fc5-b9b1-6202bbde7b67","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205161536","name":"AzurePSDeployment-202205161536","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"7eb81da1-a580-49ba-95ad-93e99a89ab4c","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' headers: cache-control: - no-cache @@ -723,7 +724,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:50 GMT + - Mon, 16 May 2022 22:36:29 GMT expires: - '-1' pragma: @@ -737,7 +738,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -949,9 +950,9 @@ interactions: "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": - {"value": "My"}, "certificateThumbprint": {"value": "AF3696685661B630EF8CDE3812EE11CA8CD261E2"}, + {"value": "My"}, "certificateThumbprint": {"value": "259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8"}, "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"}, - "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"}, + "certificateUrlvalue": {"value": "https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"}, "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": @@ -973,15 +974,15 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202204111924","name":"AzurePSDeployment-202204111924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"AF3696685661B630EF8CDE3812EE11CA8CD261E2"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-04-11T11:24:57.2257022Z","duration":"PT0.0001729S","correlationId":"e302b1be-eb63-4633-ab8b-31f0f18ede48","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205161536","name":"AzurePSDeployment-202205161536","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-05-16T22:36:32.6616993Z","duration":"PT0.0008293S","correlationId":"a2de4cff-c15d-451b-bdec-241848ebaa1c","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202204111924/operationStatuses/08585519305905972142?api-version=2021-04-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205161536/operationStatuses/08585488662938270203?api-version=2021-04-01 cache-control: - no-cache content-length: @@ -989,7 +990,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:24:58 GMT + - Mon, 16 May 2022 22:36:32 GMT expires: - '-1' pragma: @@ -999,7 +1000,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 201 message: Created @@ -1017,9 +1018,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1031,7 +1032,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:25:28 GMT + - Mon, 16 May 2022 22:37:01 GMT expires: - '-1' pragma: @@ -1059,9 +1060,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1073,7 +1074,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:25:59 GMT + - Mon, 16 May 2022 22:37:32 GMT expires: - '-1' pragma: @@ -1101,9 +1102,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1115,7 +1116,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:26:29 GMT + - Mon, 16 May 2022 22:38:02 GMT expires: - '-1' pragma: @@ -1143,9 +1144,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1157,7 +1158,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:27:00 GMT + - Mon, 16 May 2022 22:38:32 GMT expires: - '-1' pragma: @@ -1185,9 +1186,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1199,7 +1200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:27:30 GMT + - Mon, 16 May 2022 22:39:02 GMT expires: - '-1' pragma: @@ -1227,9 +1228,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1241,7 +1242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:28:01 GMT + - Mon, 16 May 2022 22:39:32 GMT expires: - '-1' pragma: @@ -1269,9 +1270,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1283,7 +1284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:28:31 GMT + - Mon, 16 May 2022 22:40:03 GMT expires: - '-1' pragma: @@ -1311,9 +1312,9 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: string: '{"status":"Running"}' @@ -1325,7 +1326,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:02 GMT + - Mon, 16 May 2022 22:40:32 GMT expires: - '-1' pragma: @@ -1353,21 +1354,21 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585519305905972142?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: - string: '{"status":"Succeeded"}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '22' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:32 GMT + - Mon, 16 May 2022 22:41:02 GMT expires: - '-1' pragma: @@ -1395,21 +1396,21 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-azure-mgmt-resource/20.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202204111924","name":"AzurePSDeployment-202204111924","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"AF3696685661B630EF8CDE3812EE11CA8CD261E2"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/c6c89d1bcf464ded9e3be417f3d213fe"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-04-11T11:29:03.1398704Z","duration":"PT4M5.9143411S","correlationId":"e302b1be-eb63-4633-ab8b-31f0f18ede48","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"cx46qhzwogrlq3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogscx46qhzwogrlq2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"9ffbc8cb-f4ff-423e-bebf-00c817a229c4","clusterCodeVersion":"8.2.1571.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4","certificate":{"thumbprint":"AF3696685661B630EF8CDE3812EE11CA8CD261E2","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogscx46qhzwogrlq2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogscx46qhzwogrlq2.blob.core.windows.net/","queueEndpoint":"https://sflogscx46qhzwogrlq2.queue.core.windows.net/","tableEndpoint":"https://sflogscx46qhzwogrlq2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"8.2.1571.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/cx46qhzwogrlq3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogscx46qhzwogrlq2"}]}}' + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '8812' + - '20' content-type: - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:33 GMT + - Mon, 16 May 2022 22:41:33 GMT expires: - '-1' pragma: @@ -1427,7 +1428,7 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: @@ -1437,68 +1438,27 @@ interactions: ParameterSetName: - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": - \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n - \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n - \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '2838' + - '20' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:35 GMT + - Mon, 16 May 2022 22:42:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -1510,78 +1470,37 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster create Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": - \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n - \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n - \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '2838' + - '20' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:37 GMT + - Mon, 16 May 2022 22:42:32 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -1593,78 +1512,247 @@ interactions: body: null headers: Accept: - - application/json + - '*/*' Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster create Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 response: body: - string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": - \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n - \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": - \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n - \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": - \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n - \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": - [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": - [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": - [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n - \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n - \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": - \"Bronze\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n - \ \"vmInstanceCount\": 3,\r\n \"clientConnectionEndpointPort\": - 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": - {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n - \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": - 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": - \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": - \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n - \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": - \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n - \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n - \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + string: '{"status":"Running"}' headers: cache-control: - no-cache content-length: - - '2838' + - '20' content-type: - - application/json + - application/json; charset=utf-8 date: - - Mon, 11 Apr 2022 11:29:38 GMT + - Mon, 16 May 2022 22:43:03 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --secret-identifier --vm-password --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?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: + - Mon, 16 May 2022 22:43:33 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --secret-identifier --vm-password --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?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: + - Mon, 16 May 2022 22:44:03 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --secret-identifier --vm-password --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?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: + - Mon, 16 May 2022 22:44:33 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --secret-identifier --vm-password --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488662938270203?api-version=2021-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 22:45:03 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --secret-identifier --vm-password --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205161536","name":"AzurePSDeployment-202205161536","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Bronze"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/sfrp-cli-kv-000002"},"certificateUrlValue":{"type":"String","value":"https://sfrp-cli-kv-000002.vault.azure.net/secrets/sfrp-cli-000003/d5977deac4c04e4db1e96a416b6a6f05"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":3}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-05-16T22:44:54.6095386Z","duration":"PT8M21.9486686S","correlationId":"a2de4cff-c15d-451b-bdec-241848ebaa1c","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"45t7wcdoyty7u3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogs45t7wcdoyty7u2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"6f99e277-554c-4088-9b9c-47c8428b537a","clusterCodeVersion":"9.0.1017.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a","certificate":{"thumbprint":"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Bronze","nodeTypes":[{"name":"nt1vm","vmInstanceCount":3,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogs45t7wcdoyty7u2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/","queueEndpoint":"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/","tableEndpoint":"https://sflogs45t7wcdoyty7u2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"9.0.1017.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/45t7wcdoyty7u3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogs45t7wcdoyty7u2"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '8813' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 22:45:03 GMT expires: - '-1' pragma: - no-cache - server: - - Microsoft-HTTPAPI/2.0 - - Microsoft-HTTPAPI/2.0 strict-transport-security: - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked vary: - Accept-Encoding x-content-type-options: @@ -1680,13 +1768,13 @@ interactions: Accept-Encoding: - gzip, deflate CommandName: - - sf cluster show + - sf cluster create Connection: - keep-alive ParameterSetName: - - -g -c + - -g -c -l --secret-identifier --vm-password --cluster-size User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -1695,16 +1783,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1718,25 +1806,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2838' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:30:40 GMT + - Mon, 16 May 2022 22:45:03 GMT expires: - '-1' pragma: @@ -1769,7 +1857,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -1778,16 +1866,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1801,25 +1889,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2838' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:31:41 GMT + - Mon, 16 May 2022 22:45:04 GMT expires: - '-1' pragma: @@ -1852,7 +1940,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -1861,16 +1949,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1884,25 +1972,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2838' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:32:44 GMT + - Mon, 16 May 2022 22:45:04 GMT expires: - '-1' pragma: @@ -1935,7 +2023,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -1944,16 +2032,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -1967,25 +2055,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2844' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:33:45 GMT + - Mon, 16 May 2022 22:46:04 GMT expires: - '-1' pragma: @@ -2018,7 +2106,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -2027,16 +2115,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2050,25 +2138,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2844' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:34:48 GMT + - Mon, 16 May 2022 22:47:04 GMT expires: - '-1' pragma: @@ -2101,7 +2189,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -2110,16 +2198,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2133,25 +2221,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2844' + - '2840' content-type: - application/json date: - - Mon, 11 Apr 2022 11:35:49 GMT + - Mon, 16 May 2022 22:48:05 GMT expires: - '-1' pragma: @@ -2184,7 +2272,7 @@ interactions: ParameterSetName: - -g -c User-Agent: - - AZURECLI/2.35.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.9.6 (Windows-10-10.0.19044-SP0) + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 response: @@ -2193,16 +2281,16 @@ interactions: \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n - \ \"etag\": \"W/\\\"637852731344058273\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": - \"zhiyihuang@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": - \"2022-04-11T11:25:33.9523998+00:00\",\r\n \"lastModifiedBy\": \"zhiyihuang@microsoft.com\",\r\n - \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-04-11T11:25:33.9523998+00:00\"\r\n + \ \"etag\": \"W/\\\"637883374148987862\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T22:36:54.8844656+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T22:36:54.8844656+00:00\"\r\n \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n - \ \"clusterId\": \"9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n \"clusterCodeVersion\": - \"8.2.1571.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \ \"clusterId\": \"6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": - \"https://westus.servicefabric.azure.com/runtime/clusters/9ffbc8cb-f4ff-423e-bebf-00c817a229c4\",\r\n - \ \"certificate\": {\r\n \"thumbprint\": \"AF3696685661B630EF8CDE3812EE11CA8CD261E2\",\r\n + \"https://westus.servicefabric.azure.com/runtime/clusters/6f99e277-554c-4088-9b9c-47c8428b537a\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"259472D4C9B6A08E07F8C8D7EE6B0CB855F072C8\",\r\n \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": @@ -2216,25 +2304,25 @@ interactions: \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": - {\r\n \"storageAccountName\": \"sflogscx46qhzwogrlq2\",\r\n \"primaryAccessKey\": + {\r\n \"storageAccountName\": \"sflogs45t7wcdoyty7u2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": - \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogscx46qhzwogrlq2.blob.core.windows.net/\",\r\n - \ \"queueEndpoint\": \"https://sflogscx46qhzwogrlq2.queue.core.windows.net/\",\r\n - \ \"tableEndpoint\": \"https://sflogscx46qhzwogrlq2.table.core.windows.net/\",\r\n + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogs45t7wcdoyty7u2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogs45t7wcdoyty7u2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogs45t7wcdoyty7u2.table.core.windows.net/\",\r\n \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": - \"8.2.1571.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" headers: cache-control: - no-cache content-length: - - '2834' + - '2830' content-type: - application/json date: - - Mon, 11 Apr 2022 11:36:52 GMT + - Mon, 16 May 2022 22:49:05 GMT expires: - '-1' pragma: diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_update_settings_and_reliability.yaml b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_update_settings_and_reliability.yaml new file mode 100644 index 00000000000..fc02ba40c6a --- /dev/null +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/recordings/test_update_settings_and_reliability.yaml @@ -0,0 +1,7372 @@ +interactions: +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T16:12:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '310' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:12:39 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001","name":"clitest.rg000001","type":"Microsoft.Resources/resourceGroups","location":"westus","tags":{"product":"azurecli","cause":"automation","date":"2022-05-16T16:12:34Z"},"properties":{"provisioningState":"Succeeded"}}' + headers: + cache-control: + - no-cache + content-length: + - '310' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:12:39 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"error":{"code":"ResourceNotFound","message":"The Resource ''Microsoft.KeyVault/vaults/clitestrg000001'' + under resource group ''clitest.rg000001'' was not found. For more details + please go to https://aka.ms/ARMResourceNotFoundFix"}}' + headers: + cache-control: + - no-cache + content-length: + - '235' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:12:40 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-failure-cause: + - gateway + status: + code: 404 + message: Not Found +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-graphrbac/0.60.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://graph.windows.net/00000000-0000-0000-0000-000000000000/me?api-version=1.6 + response: + body: + string: '{"odata.metadata":"https://graph.windows.net/00000000-0000-0000-0000-000000000000/$metadata#directoryObjects/@Element","odata.type":"Microsoft.DirectoryServices.User","objectType":"User","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","deletionTimestamp":null,"accountEnabled":true,"ageGroup":null,"assignedLicenses":[{"disabledPlans":["b76fb638-6ba6-402a-b9f9-83d28acb3d86","cd31b152-6326-4d1b-ae1b-997b625182e6","a413a9ff-720c-4822-98ef-2f37c2a21f4c","a6520331-d7d4-4276-95f5-15c0933bc757","ded3d325-1bdc-453e-8432-5bac26d7a014","afa73018-811e-46e9-988f-f75d2b1b8430","b21a6b06-1988-436e-a07b-51ec6d9f52ad","531ee2f8-b1cb-453b-9c21-d2180d014ca5","bf28f719-7844-4079-9c78-c1307898e192","28b0fa46-c39a-4188-89e2-58e979a6b014","199a5c09-e0ca-4e37-8f7c-b05d533e1ea2","65cc641f-cccd-4643-97e0-a17e3045e541","e26c2fcc-ab91-4a61-b35c-03cdc8dddf66","46129a58-a698-46f0-aa5b-17f6586297d9","6db1f1db-2b46-403f-be40-e39395f08dbb","6dc145d6-95dd-4191-b9c3-185575ee6f6b","41fcdd7d-4733-4863-9cf4-c65b83ce2df4","c4801e8a-cb58-4c35-aca6-f2dcc106f287","0898bdbb-73b0-471a-81e5-20f1fe4dd66e","617b097b-4b93-4ede-83de-5f075bb5fb2f","33c4f319-9bdd-48d6-9c4d-410b750a4a5a","8e0c0a52-6a6c-4d40-8370-dd62790dcd70","4828c8ec-dc2e-4779-b502-87ac9ce28ab7","3e26ee1f-8a5f-4d52-aee2-b81ce45c8f40"],"skuId":"c7df2760-2c81-4ef7-b578-5b5392b571df"},{"disabledPlans":["b622badb-1b45-48d5-920f-4b27a2c0996c"],"skuId":"3d957427-ecdc-4df2-aacd-01cc9d519da8"},{"disabledPlans":[],"skuId":"85aae730-b3d1-4f99-bb28-c9f81b05137c"},{"disabledPlans":[],"skuId":"9f3d9c1d-25a5-4aaa-8e59-23a1e6450a67"},{"disabledPlans":[],"skuId":"412ce1a7-a499-41b3-8eb6-b38f2bbc5c3f"},{"disabledPlans":["39b5c996-467e-4e60-bd62-46066f572726"],"skuId":"90d8b3f8-712e-4f7b-aa1e-62e7ae6cbe96"},{"disabledPlans":["e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72"],"skuId":"09015f9f-377f-4538-bbb5-f75ceb09358a"},{"disabledPlans":[],"skuId":"f30db892-07e9-47e9-837c-80727f46fd3d"},{"disabledPlans":[],"skuId":"26a18e8f-4d14-46f8-835a-ed3ba424a961"},{"disabledPlans":[],"skuId":"488ba24a-39a9-4473-8ee5-19291e71b002"},{"disabledPlans":[],"skuId":"b05e124f-c7cc-45a0-a6aa-8cf78c946968"},{"disabledPlans":[],"skuId":"c5928f49-12ba-48f7-ada3-0d743a3601d5"},{"disabledPlans":["0b03f40b-c404-40c3-8651-2aceb74365fa","b650d915-9886-424b-a08d-633cede56f57","e95bec33-7c88-4a70-8e19-b10bd9d0c014","5dbe027f-2339-4123-9542-606e4d348a72","fe71d6c3-a2ea-4499-9778-da042bf08063","fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"],"skuId":"ea126fc5-a19e-42e2-a731-da9d437bffcf"}],"assignedPlans":[{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"199a5c09-e0ca-4e37-8f7c-b05d533e1ea2"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b622badb-1b45-48d5-920f-4b27a2c0996c"},{"assignedTimestamp":"2021-10-26T20:09:08Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"fafd7243-e5c1-4a3a-9e40-495efcb1d3c3"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"fe71d6c3-a2ea-4499-9778-da042bf08063"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"e95bec33-7c88-4a70-8e19-b10bd9d0c014"},{"assignedTimestamp":"2021-10-26T00:43:44Z","capabilityStatus":"Deleted","service":"SharePoint","servicePlanId":"5dbe027f-2339-4123-9542-606e4d348a72"},{"assignedTimestamp":"2021-06-22T07:13:17Z","capabilityStatus":"Enabled","service":"WindowsUpdateforBusinessCloudExtensions","servicePlanId":"7bf960f6-2cd9-443a-8046-5dbff9558365"},{"assignedTimestamp":"2021-04-15T21:09:04Z","capabilityStatus":"Deleted","service":"MIPExchangeSolutions","servicePlanId":"cd31b152-6326-4d1b-ae1b-997b625182e6"},{"assignedTimestamp":"2020-12-22T01:55:20Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"2f442157-a11c-46b9-ae5b-6e39ff4e5849"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"18fa3aba-b085-4105-87d7-55617b8585e6"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"ERP","servicePlanId":"69f07c66-bee4-4222-b051-195095efee5b"},{"assignedTimestamp":"2020-12-11T21:20:29Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"0a05d977-a21a-45b2-91ce-61c240dbafa2"},{"assignedTimestamp":"2020-11-03T20:53:51Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"7e6d7d78-73de-46ba-83b1-6d25117334ba"},{"assignedTimestamp":"2020-11-03T20:53:51Z","capabilityStatus":"Deleted","service":"M365CommunicationCompliance","servicePlanId":"a413a9ff-720c-4822-98ef-2f37c2a21f4c"},{"assignedTimestamp":"2020-10-17T05:27:48Z","capabilityStatus":"Enabled","service":"WorkplaceAnalytics","servicePlanId":"f477b0f0-3bb1-4890-940c-40fcee6ce05f"},{"assignedTimestamp":"2020-08-14T17:03:24Z","capabilityStatus":"Enabled","service":"YammerEnterprise","servicePlanId":"7547a3fe-08ee-4ccb-b430-5077c5041653"},{"assignedTimestamp":"2020-08-04T04:52:26Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"f3d5636e-ddc2-41bf-bba6-ca6fadece269"},{"assignedTimestamp":"2020-06-18T09:13:42Z","capabilityStatus":"Enabled","service":"MicrosoftPrint","servicePlanId":"795f6fe0-cc4d-4773-b050-5dde4dc704c9"},{"assignedTimestamp":"2019-11-04T20:47:57Z","capabilityStatus":"Enabled","service":"WhiteboardServices","servicePlanId":"4a51bca5-1eff-43f5-878c-177680f191af"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"5136a095-5cf0-4aff-bec3-e84448b38ea5"},{"assignedTimestamp":"2019-10-15T05:20:41Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb0351d-3b08-4503-993d-383af8de41e3"},{"assignedTimestamp":"2019-10-09T16:03:10Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"ca4be917-fbce-4b52-839e-6647467a1668"},{"assignedTimestamp":"2019-08-08T19:38:25Z","capabilityStatus":"Enabled","service":"MicrosoftFormsProTest","servicePlanId":"97f29a83-1a20-44ff-bf48-5e4ad11f3e51"},{"assignedTimestamp":"2019-05-24T07:32:57Z","capabilityStatus":"Enabled","service":"DYN365AISERVICEINSIGHTS","servicePlanId":"1412cdc1-d593-4ad1-9050-40c30ad0b023"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProjectProgramsAndPortfolios","servicePlanId":"818523f5-016b-4355-9be8-ed6944946ea7"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"fa200448-008c-4acb-abd4-ea106ed2199d"},{"assignedTimestamp":"2019-04-04T13:35:12Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"50554c47-71d9-49fd-bc54-42a2765c555c"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"50e68c76-46c6-4674-81f9-75456511b170"},{"assignedTimestamp":"2018-11-19T20:20:28Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"17ab22cd-a0b3-4536-910a-cb6eb12696c0"},{"assignedTimestamp":"2018-09-24T18:57:55Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"018fb91e-cee3-418c-9063-d7562978bdaf"},{"assignedTimestamp":"2018-09-24T18:57:54Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"b1188c4c-1b36-4018-b48b-ee07604f6feb"},{"assignedTimestamp":"2018-09-07T09:50:28Z","capabilityStatus":"Enabled","service":"OfficeForms","servicePlanId":"e212cbc7-0961-4c40-9825-01117710dcb1"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Enabled","service":"Sway","servicePlanId":"a23b959c-7ce8-4e57-9140-b90eb88a9e97"},{"assignedTimestamp":"2018-08-30T22:33:16Z","capabilityStatus":"Deleted","service":"OfficeForms","servicePlanId":"159f4cd6-e380-449f-a816-af1a9ef76344"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"bea4c11e-220a-4e6d-8eb8-8ea15d019f90"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"Deskless","servicePlanId":"8c7d2df8-86f0-4902-b2ed-a0458298f3b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"6c57d4b6-3b23-47a5-9bc9-69f17b4947b3"},{"assignedTimestamp":"2018-08-17T09:23:58Z","capabilityStatus":"Enabled","service":"To-Do","servicePlanId":"3fb82609-8c27-4f7b-bd51-30634711ee67"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2018-04-24T12:46:30Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2018-03-24T01:46:21Z","capabilityStatus":"Deleted","service":"MicrosoftStream","servicePlanId":"acffdce6-c30f-4dc2-81c0-372e33c515ec"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"WindowsDefenderATP","servicePlanId":"871d91ec-ec1a-452b-a83f-bd76c7d770ef"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"AzureAdvancedThreatAnalytics","servicePlanId":"14ab5db5-e6c4-4b20-b4bc-13e36fd2227f"},{"assignedTimestamp":"2018-03-17T19:56:04Z","capabilityStatus":"Enabled","service":"Windows","servicePlanId":"e7c91390-7625-45be-94e0-e16907e03118"},{"assignedTimestamp":"2018-01-09T13:10:07Z","capabilityStatus":"Enabled","service":"ProjectWorkManagement","servicePlanId":"b737dad2-2f6c-4c65-90e3-ca563267e8b9"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"41781fb2-bc02-4b7c-bd55-b576c07bb09d"},{"assignedTimestamp":"2018-01-01T06:42:49Z","capabilityStatus":"Enabled","service":"MultiFactorService","servicePlanId":"8a256a2b-b617-496d-b51b-e76466e88db0"},{"assignedTimestamp":"2017-12-31T19:37:55Z","capabilityStatus":"Deleted","service":"Adallom","servicePlanId":"932ad362-64a8-4783-9106-97849a1a30b9"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"RMSOnline","servicePlanId":"5689bec4-755d-4753-8b61-40975025187c"},{"assignedTimestamp":"2017-12-14T02:47:10Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"2e2ddb96-6af9-4b1d-a3f0-d6ecfd22edb2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"Adallom","servicePlanId":"8c098270-9dd4-4350-9b30-ba4703f3b36b"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"MicrosoftStream","servicePlanId":"6c6042f5-6f01-4d67-b8c1-eb99d36eed3e"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"2bdbaf8f-738f-4ac7-9234-3c3ee2ce7d0f"},{"assignedTimestamp":"2017-11-07T01:40:04Z","capabilityStatus":"Enabled","service":"SharePoint","servicePlanId":"da792a53-cbc0-4184-a10d-e544dd34b3c1"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"9f431833-0334-42de-a7dc-70aa40db46db"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"efb87545-963c-4e0d-99df-69c6916d9eb0"},{"assignedTimestamp":"2017-10-13T17:26:10Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"34c0d7a0-a70f-4668-9238-47f9fc208882"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"AADPremiumService","servicePlanId":"eec0eb4f-6444-4f95-aba0-50c24d67f998"},{"assignedTimestamp":"2017-10-13T07:21:19Z","capabilityStatus":"Enabled","service":"SCO","servicePlanId":"c1ec4a95-1f05-45b3-a911-aa3fa01094f5"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftCommunicationsOnline","servicePlanId":"0feaeb32-d00e-4d66-bd5a-43b5b83db82c"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"ProcessSimple","servicePlanId":"07699545-9485-468e-95b6-2fca3738be01"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerBI","servicePlanId":"70d33638-9c74-4d01-bfd3-562de28bd4ba"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"exchange","servicePlanId":"4de31727-a228-4ec3-a5bf-8e45b5ca48cc"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"663a804f-1c30-4ff0-9915-9db84f0d1cea"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"TeamspaceAPI","servicePlanId":"57ff2da0-773e-42df-b2af-ffb7a2317929"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"PowerAppsService","servicePlanId":"9c0dab89-a30c-4117-86e7-97bda240acd2"},{"assignedTimestamp":"2017-10-13T02:23:16Z","capabilityStatus":"Enabled","service":"MicrosoftOffice","servicePlanId":"43de0ff5-c92c-492b-9116-175376d08c38"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"Netbreeze","servicePlanId":"03acaee3-9492-4f40-aed4-bcb6b32981b6"},{"assignedTimestamp":"2017-10-12T21:41:33Z","capabilityStatus":"Enabled","service":"CRM","servicePlanId":"d56f3deb-50d8-465a-bedb-f079817ccac1"}],"city":"REDMOND","companyName":"Microsoft","consentProvidedForMinor":null,"country":null,"createdDateTime":null,"creationType":null,"department":"Base + Platform-MARCUSFO-OPEX-1010","dirSyncEnabled":true,"displayName":"Alfredo + Santamaria Gomez","employeeId":null,"facsimileTelephoneNumber":null,"givenName":"Alfredo","immutableId":"1252188","isCompromised":null,"jobTitle":"SOFTWARE + ENGINEER 2","lastDirSyncTime":"2022-05-06T17:25:39Z","legalAgeGroupClassification":null,"mail":"Alfredo.Santamaria@microsoft.com","mailNickname":"alsantam","mobile":null,"onPremisesDistinguishedName":"CN=Alfredo + Santamaria Gomez,OU=MSE,OU=Users,OU=CoreIdentity,DC=northamerica,DC=corp,DC=microsoft,DC=com","onPremisesSecurityIdentifier":"S-1-5-21-124525095-708259637-1543119021-1768146","otherMails":[],"passwordPolicies":"DisablePasswordExpiration","passwordProfile":null,"physicalDeliveryOfficeName":"41/1H00","postalCode":null,"preferredLanguage":null,"provisionedPlans":[{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"SharePoint"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"MicrosoftCommunicationsOnline"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"exchange"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"Netbreeze"},{"capabilityStatus":"Enabled","provisioningStatus":"Success","service":"CRM"}],"provisioningErrors":[],"proxyAddresses":["X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=4c4fde36ef8e4419b7a8683d77d0ea0e-Alfredo + Santam","x500:/o=ExchangeLabs/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=5b9326560aba4548b3f55813552a1d62-Alfredo + San","X500:/o=MMS/ou=Exchange Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=70cb70871db3416eb2b15f035973a957-Alfredo + Santa3c6c65b","smtp:alsantam@microsoft.onmicrosoft.com","smtp:alsantam@service.microsoft.com","smtp:alsantam@microsoft.com","X500:/o=microsoft/ou=Exchange + Administrative Group (FYDIBOHF23SPDLT)/cn=Recipients/cn=1fe043b7a56b425097310ee390e87535-Alfredo + Santam","SMTP:Alfredo.Santamaria@microsoft.com"],"refreshTokensValidFromDateTime":"2020-08-01T20:12:10Z","showInAddressList":null,"signInNames":[],"sipProxyAddress":"alsantam@microsoft.com","state":null,"streetAddress":null,"surname":"Santamaria + Gomez","telephoneNumber":null,"thumbnailPhoto@odata.mediaEditLink":"directoryObjects/3307ff37-85af-4550-bc6a-d1e02672cb7c/Microsoft.DirectoryServices.User/thumbnailPhoto","usageLocation":"CA","userIdentities":[],"userPrincipalName":"alsantam@microsoft.com","userState":null,"userStateChangedOn":null,"userType":"Member","extension_18e31482d3fb4a8ea958aa96b662f508_SupervisorInd":"N","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToPersonnelNbr":"10806","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToFullName":"Basu, + Tassaduq H.","extension_18e31482d3fb4a8ea958aa96b662f508_ReportsToEmailName":"TASSB","extension_18e31482d3fb4a8ea958aa96b662f508_ProfitCenterCode":"P98313","extension_18e31482d3fb4a8ea958aa96b662f508_PositionNumber":"91710758","extension_18e31482d3fb4a8ea958aa96b662f508_CostCenterCode":"98313","extension_18e31482d3fb4a8ea958aa96b662f508_CompanyCode":"1010","extension_18e31482d3fb4a8ea958aa96b662f508_ZipCode":"98052","extension_18e31482d3fb4a8ea958aa96b662f508_StateProvinceCode":"WA","extension_18e31482d3fb4a8ea958aa96b662f508_CountryShortCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_CityName":"REDMOND","extension_18e31482d3fb4a8ea958aa96b662f508_AddressLine1":"1 + Microsoft Way","extension_18e31482d3fb4a8ea958aa96b662f508_LocationAreaCode":"US","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingName":"41","extension_18e31482d3fb4a8ea958aa96b662f508_BuildingID":"309","extension_18e31482d3fb4a8ea958aa96b662f508_PersonnelNumber":"1252188"}' + headers: + access-control-allow-origin: + - '*' + cache-control: + - no-cache + content-length: + - '19545' + content-type: + - application/json; odata=minimalmetadata; streaming=true; charset=utf-8 + dataserviceversion: + - 3.0; + date: + - Mon, 16 May 2022 16:12:41 GMT + duration: + - '3467015' + expires: + - '-1' + ocp-aad-diagnostics-server-name: + - EJhNhkVL9mTfVDzU0dkzBiJo37g182ugaYTK08hdjlE= + ocp-aad-session-key: + - m8F_ZofK-VCE1glvEiLfTuMBUo3O45Q1Xr15ZD0Ubw3vYMwjz9EGV1ty5XYilQvnvQdNfRSN0dn2luWplOE-RKhzSMhpwIEXePxxMLLtbWcVLQyXUuk5mkbEOKY3cZ-j.ghtHxPL9IRWWtNK3ydk-uRHLT524KllWDp4VFMaOOHk + pragma: + - no-cache + request-id: + - 1b3d269a-50cc-473f-90c5-a15d34a0ebcd + strict-transport-security: + - max-age=31536000; includeSubDomains + x-aspnet-version: + - 4.0.30319 + x-ms-dirapi-data-contract-version: + - '1.6' + x-ms-resource-unit: + - '1' + x-powered-by: + - ASP.NET + status: + code: 200 + message: OK +- request: + body: '{"location": "westus", "properties": {"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "sku": {"family": "A", "name": "standard"}, "accessPolicies": [{"tenantId": + "72f988bf-86f1-41af-91ab-2d7cd011db47", "objectId": "3307ff37-85af-4550-bc6a-d1e02672cb7c", + "permissions": {"keys": ["get", "create", "delete", "list", "update", "import", + "backup", "restore"], "secrets": ["get", "list", "set", "delete", "backup", + "restore", "recover"], "certificates": ["get", "list", "delete", "create", "import", + "update", "managecontacts", "getissuers", "listissuers", "setissuers", "deleteissuers", + "manageissuers", "recover"]}}], "enabledForDeployment": true, "enableSoftDelete": + true, "softDeleteRetentionInDays": 90, "enableRbacAuthorization": false, "publicNetworkAccess": + "enabled"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '776' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001","name":"clitestrg000001","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"alsantam@microsoft.com","createdByType":"User","createdAt":"2022-05-16T16:12:42.316Z","lastModifiedBy":"alsantam@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-16T16:12:42.316Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"]}}],"enabledForDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":false,"vaultUri":"https://clitestrg000001.vault.azure.net","provisioningState":"RegisteringDns","publicNetworkAccess":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '1269' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:12:45 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.372.0 + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-keyvault/9.3.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001?api-version=2021-06-01-preview + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001","name":"clitestrg000001","type":"Microsoft.KeyVault/vaults","location":"westus","tags":{},"systemData":{"createdBy":"alsantam@microsoft.com","createdByType":"User","createdAt":"2022-05-16T16:12:42.316Z","lastModifiedBy":"alsantam@microsoft.com","lastModifiedByType":"User","lastModifiedAt":"2022-05-16T16:12:42.316Z"},"properties":{"sku":{"family":"A","name":"standard"},"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","accessPolicies":[{"tenantId":"72f988bf-86f1-41af-91ab-2d7cd011db47","objectId":"3307ff37-85af-4550-bc6a-d1e02672cb7c","permissions":{"keys":["get","create","delete","list","update","import","backup","restore"],"secrets":["get","list","set","delete","backup","restore","recover"],"certificates":["get","list","delete","create","import","update","managecontacts","getissuers","listissuers","setissuers","deleteissuers","manageissuers","recover"]}}],"enabledForDeployment":true,"enableSoftDelete":true,"softDeleteRetentionInDays":90,"enableRbacAuthorization":false,"vaultUri":"https://clitestrg000001.vault.azure.net/","provisioningState":"Succeeded","publicNetworkAccess":"Enabled"}}' + headers: + cache-control: + - no-cache + content-length: + - '1265' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-IIS/10.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-aspnet-version: + - 4.0.30319 + x-content-type-options: + - nosniff + x-ms-keyvault-service-version: + - 1.5.372.0 + status: + code: 200 + message: OK +- request: + body: '' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - 0 + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.0 + response: + body: + string: '{"error":{"code":"Unauthorized","message":"AKV10000: Request is missing + a Bearer or PoP token."}}' + headers: + cache-control: + - no-cache + content-length: + - '97' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:35 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + www-authenticate: + - Bearer authorization="https://login.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47", + resource="https://vault.azure.net" + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 401 + message: Unauthorized +- request: + body: '{"policy": {"key_props": {"exportable": true, "kty": "RSA", "key_size": + 2048, "reuse_key": true}, "secret_props": {"contentType": "application/x-pkcs12"}, + "x509_props": {"subject": "CN=sfrp-cli-000004", "key_usage": ["cRLSign", "dataEncipherment", + "digitalSignature", "keyEncipherment", "keyAgreement", "keyCertSign"], "validity_months": + 12}, "lifetime_actions": [{"trigger": {"days_before_expiry": 90}, "action": + {"action_type": "AutoRenew"}}], "issuer": {"name": "Self"}, "attributes": {"enabled": + true}}, "attributes": {"enabled": true}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '540' + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: POST + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/create?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbWFtZ3h1ajVsMjRxa3JpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqpNQo/Q1Imvy6ZK3tickOv6R6aFgDKRELc6TDXWMzf4wuFMTjBXf3stBwzYEhLt5L915GQW7k1OnNWmcwgrx3OPjw+n/nYK8kGqOEyHVbAZX0d7R2otMFIO69FCFQtZMD0EaA/0XzcpF62Z8lwJsLR3lVmkKMHWkP056Nt/8aRZ5y4nhJgrFszEbaYHNVZkJyDtVaT0czz/LJLKknTRKrV6ClC3zlfk47rDnSofJ8KlaOOQLpz8QjfYL5sZhYY9LcinNLRqoA+Bv3T7QA5upgYzwcm/IuYBUXNOdjJILS0QteHRofnStBApTuRsu8maymYDztUFUvnBYa9Q1P5ZwjQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBABfSlLKvYLC15GMVG1zFkgd5GxJh1L/Wan+xcZ+7ygRHjrfgeamYSHzu9Z78IncqQEKKPOgy9HFapr9CyzeH7NUrBm/Ts7C6h1QaUX1XvQdrO81wHMfzSXxSsKKP7McmxjZ7XIWVsnE+NWewzs6DOetoFEDwOd5KAoV6YPgl1ACUufh+Yc0vYsVNhgr3E1IHSPbsUKAL9KqIRzLXaGTFievkO7bCPqCNaNtxwa5SnVqg/GI5H9IvD7M7sQf1hxsJgdTS30pRKkK1EvhxSOGGkvQ9OvgUpH16XsBZQJbB2+51tpWI/ZU3SnOf8pfcfkEJeVUUdE/zzvilzj5yImB78Rk=","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"baee0c47287942dd99ae72c8fe56db5f"}' + headers: + cache-control: + - no-cache + content-length: + - '1318' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:37 GMT + expires: + - '-1' + location: + - https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0&request_id=baee0c47287942dd99ae72c8fe56db5f + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbWFtZ3h1ajVsMjRxa3JpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqpNQo/Q1Imvy6ZK3tickOv6R6aFgDKRELc6TDXWMzf4wuFMTjBXf3stBwzYEhLt5L915GQW7k1OnNWmcwgrx3OPjw+n/nYK8kGqOEyHVbAZX0d7R2otMFIO69FCFQtZMD0EaA/0XzcpF62Z8lwJsLR3lVmkKMHWkP056Nt/8aRZ5y4nhJgrFszEbaYHNVZkJyDtVaT0czz/LJLKknTRKrV6ClC3zlfk47rDnSofJ8KlaOOQLpz8QjfYL5sZhYY9LcinNLRqoA+Bv3T7QA5upgYzwcm/IuYBUXNOdjJILS0QteHRofnStBApTuRsu8maymYDztUFUvnBYa9Q1P5ZwjQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBABfSlLKvYLC15GMVG1zFkgd5GxJh1L/Wan+xcZ+7ygRHjrfgeamYSHzu9Z78IncqQEKKPOgy9HFapr9CyzeH7NUrBm/Ts7C6h1QaUX1XvQdrO81wHMfzSXxSsKKP7McmxjZ7XIWVsnE+NWewzs6DOetoFEDwOd5KAoV6YPgl1ACUufh+Yc0vYsVNhgr3E1IHSPbsUKAL9KqIRzLXaGTFievkO7bCPqCNaNtxwa5SnVqg/GI5H9IvD7M7sQf1hxsJgdTS30pRKkK1EvhxSOGGkvQ9OvgUpH16XsBZQJbB2+51tpWI/ZU3SnOf8pfcfkEJeVUUdE/zzvilzj5yImB78Rk=","cancellation_requested":false,"status":"inProgress","status_details":"Pending + certificate created. Certificate request is in progress. This may take some + time based on the issuer provider. Please check again later.","request_id":"baee0c47287942dd99ae72c8fe56db5f"}' + headers: + cache-control: + - no-cache + content-length: + - '1318' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:37 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending","issuer":{"name":"Self"},"csr":"MIICszCCAZsCAQAwIzEhMB8GA1UEAxMYc2ZycC1jbGktbWFtZ3h1ajVsMjRxa3JpMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAqpNQo/Q1Imvy6ZK3tickOv6R6aFgDKRELc6TDXWMzf4wuFMTjBXf3stBwzYEhLt5L915GQW7k1OnNWmcwgrx3OPjw+n/nYK8kGqOEyHVbAZX0d7R2otMFIO69FCFQtZMD0EaA/0XzcpF62Z8lwJsLR3lVmkKMHWkP056Nt/8aRZ5y4nhJgrFszEbaYHNVZkJyDtVaT0czz/LJLKknTRKrV6ClC3zlfk47rDnSofJ8KlaOOQLpz8QjfYL5sZhYY9LcinNLRqoA+Bv3T7QA5upgYzwcm/IuYBUXNOdjJILS0QteHRofnStBApTuRsu8maymYDztUFUvnBYa9Q1P5ZwjQIDAQABoEswSQYJKoZIhvcNAQkOMTwwOjAOBgNVHQ8BAf8EBAMCAb4wHQYDVR0lBBYwFAYIKwYBBQUHAwEGCCsGAQUFBwMCMAkGA1UdEwQCMAAwDQYJKoZIhvcNAQELBQADggEBABfSlLKvYLC15GMVG1zFkgd5GxJh1L/Wan+xcZ+7ygRHjrfgeamYSHzu9Z78IncqQEKKPOgy9HFapr9CyzeH7NUrBm/Ts7C6h1QaUX1XvQdrO81wHMfzSXxSsKKP7McmxjZ7XIWVsnE+NWewzs6DOetoFEDwOd5KAoV6YPgl1ACUufh+Yc0vYsVNhgr3E1IHSPbsUKAL9KqIRzLXaGTFievkO7bCPqCNaNtxwa5SnVqg/GI5H9IvD7M7sQf1hxsJgdTS30pRKkK1EvhxSOGGkvQ9OvgUpH16XsBZQJbB2+51tpWI/ZU3SnOf8pfcfkEJeVUUdE/zzvilzj5yImB78Rk=","cancellation_requested":false,"status":"completed","target":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004","request_id":"baee0c47287942dd99ae72c8fe56db5f"}' + headers: + cache-control: + - no-cache + content-length: + - '1239' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:47 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Type: + - application/json; charset=utf-8 + User-Agent: + - python/3.8.10 (Windows-10-10.0.19044-SP0) msrest/0.6.21 msrest_azure/0.6.4 + azure-keyvault/7.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/?api-version=7.0 + response: + body: + string: '{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/829daa0068854888baa8e666babc380e","kid":"https://clitestrg000001.vault.azure.net/keys/sfrp-cli-000004/829daa0068854888baa8e666babc380e","sid":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e","x5t":"ioZlQy2eEnMatKC8X3kSMQ2RPu0","cer":"MIIDTDCCAjSgAwIBAgIQeTTeb1q3T3yrKH4qdKSeEzANBgkqhkiG9w0BAQsFADAjMSEwHwYDVQQDExhzZnJwLWNsaS1tYW1neHVqNWwyNHFrcmkwHhcNMjIwNTE2MTYwMzM4WhcNMjMwNTE2MTYxMzM4WjAjMSEwHwYDVQQDExhzZnJwLWNsaS1tYW1neHVqNWwyNHFrcmkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqk1Cj9DUia/Lpkre2JyQ6/pHpoWAMpEQtzpMNdYzN/jC4UxOMFd/ey0HDNgSEu3kv3XkZBbuTU6c1aZzCCvHc4+PD6f+dgryQao4TIdVsBlfR3tHai0wUg7r0UIVC1kwPQRoD/RfNykXrZnyXAmwtHeVWaQowdaQ/Tno23/xpFnnLieEmCsWzMRtpgc1VmQnIO1VpPRzPP8sksqSdNEqtXoKULfOV+TjusOdKh8nwqVo45AunPxCN9gvmxmFhj0tyKc0tGqgD4G/dPtADm6mBjPByb8i5gFRc052MkgtLRC14dGh+dK0EClO5Gy7yZrKZgPO1QVS+cFhr1DU/lnCNAgMBAAGjfDB6MA4GA1UdDwEB/wQEAwIBvjAJBgNVHRMEAjAAMB0GA1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjAfBgNVHSMEGDAWgBSBFFDA4fC4kf8VYO/wMNzsJJBWCTAdBgNVHQ4EFgQUgRRQwOHwuJH/FWDv8DDc7CSQVgkwDQYJKoZIhvcNAQELBQADggEBACZta9I8dXk86GjmVrisBMsTdIjtfECtKf/v+M6P+6M93nh9dUXhfU9qs1oDooyY9dB1gsQChuEaBjsaz4Fb+6Nqrc+bjqKBF8FrCXvKVucSL3K+X2thIdSY+WqJ14w5bNaKCSJjo9E1utIXWPZj5NZbJ/ldRRan1JbZDb59ZBKcM8eiH1N7h1wXb6VZXi3UDSVm2B73FwKnWAhBNquMYLgeMcuU/1ZqwFDbzPyEsKfXivul5WZdvJ1AvmZMbNc6JNCXUkPgjRDweMd6xiDvdagXWeXDP7OHNlc+VSPQf4P1MCwXzzx4Xo6iJSfGUH3iOxeEq0Z7UL4mw0hoxagNSA8=","attributes":{"enabled":true,"nbf":1652717018,"exp":1684253618,"created":1652717618,"updated":1652717618,"recoveryLevel":"Recoverable+Purgeable"},"policy":{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/policy","key_props":{"exportable":true,"kty":"RSA","key_size":2048,"reuse_key":true},"secret_props":{"contentType":"application/x-pkcs12"},"x509_props":{"subject":"CN=sfrp-cli-000004","ekus":["1.3.6.1.5.5.7.3.1","1.3.6.1.5.5.7.3.2"],"key_usage":["cRLSign","dataEncipherment","digitalSignature","keyAgreement","keyCertSign","keyEncipherment"],"validity_months":12,"basic_constraints":{"ca":false}},"lifetime_actions":[{"trigger":{"days_before_expiry":90},"action":{"action_type":"AutoRenew"}}],"issuer":{"name":"Self"},"attributes":{"enabled":true,"created":1652717617,"updated":1652717617}},"pending":{"id":"https://clitestrg000001.vault.azure.net/certificates/sfrp-cli-000004/pending"}}' + headers: + cache-control: + - no-cache + content-length: + - '2442' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:48 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000;includeSubDomains + x-content-type-options: + - nosniff + x-ms-keyvault-network-info: + - conn_type=Ipv4;addr=131.107.159.101;act_addr_fam=InterNetwork; + x-ms-keyvault-region: + - westus + x-ms-keyvault-service-version: + - 1.9.395.1 + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string", + "metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type": + "string", "metadata": {"description": "Name of your cluster - Between 3 and + 23 characters. Letters and numbers only"}}, "adminUserName": {"type": "string", + "metadata": {"description": "Remote desktop user Id"}}, "durabilityLevel": {"type": + "string", "metadata": {"description": "The durability level"}}, "reliabilityLevel": + {"type": "string", "metadata": {"description": "The reliability level"}}, "adminPassword": + {"type": "securestring", "metadata": {"description": "Remote desktop user password. + Must be a strong password"}}, "vmImagePublisher": {"type": "string", "defaultValue": + "MicrosoftWindowsServer", "metadata": {"description": "VM image Publisher"}}, + "vmImageOffer": {"type": "string", "defaultValue": "WindowsServer", "metadata": + {"description": "VM image offer"}}, "vmImageSku": {"type": "string", "metadata": + {"description": "VM image SKU"}}, "vmSku": {"type": "string", "metadata": {"description": + "VM SKU"}}, "vmImageVersion": {"type": "string", "defaultValue": "latest", "metadata": + {"description": "VM image version"}}, "loadBalancedAppPort1": {"type": "int", + "defaultValue": 80, "metadata": {"description": "Input endpoint1 for the application + to use. Replace it with what your application uses"}}, "loadBalancedAppPort2": + {"type": "int", "defaultValue": 8081, "metadata": {"description": "Input endpoint2 + for the application to use. Replace it with what your application uses"}}, "certificateStoreValue": + {"type": "string", "allowedValues": ["My"], "defaultValue": "My", "metadata": + {"description": "The store name where the cert will be deployed in the virtual + machine"}}, "certificateThumbprint": {"type": "string", "metadata": {"description": + "Certificate Thumbprint"}}, "sourceVaultValue": {"type": "string", "metadata": + {"description": "Resource Id of the key vault, is should be in the format of + /subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/"}}, "certificateUrlValue": {"type": "string", "metadata": {"description": + "Refers to the location URL in your key vault where the certificate was uploaded, + it is should be in the format of https://.vault.azure.net:443/secrets/"}}, "clusterProtectionLevel": {"type": "string", "allowedValues": + ["None", "Sign", "EncryptAndSign"], "defaultValue": "EncryptAndSign", "metadata": + {"description": "Protection level.Three values are allowed - EncryptAndSign, + Sign, None. It is best to keep the default of EncryptAndSign, unless you have + a need not to"}}, "storageAccountType": {"type": "string", "allowedValues": + ["Standard_LRS", "Standard_GRS"], "defaultValue": "Standard_LRS", "metadata": + {"description": "Replication option for the VM image storage account"}}, "supportLogStorageAccountType": + {"type": "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the support + log storage account"}}, "applicationDiagnosticsStorageAccountType": {"type": + "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the application + diagnostics storage account"}}, "nt0InstanceCount": {"type": "int", "metadata": + {"description": "Instance count for node type"}}}, "variables": {"computeLocation": + "[parameters(''clusterLocation'')]", "dnsName": "[parameters(''clusterName'')]", + "vmName": "vm", "publicIPAddressName": "PublicIP-VM", "publicIPAddressType": + "Dynamic", "vmStorageAccountContainerName": "vhds", "virtualNetworkName": "VNet", + "addressPrefix": "10.0.0.0/16", "nicName": "NIC", "lbName": "LoadBalancer", + "lbIPName": "PublicIP-LB-FE", "availSetName": "AvailabilitySet", "maxPercentUpgradeDomainDeltaUnhealthyNodes": + "100", "vnetID": "[resourceId(''Microsoft.Network/virtualNetworks'',variables(''virtualNetworkName''))]", + "overProvision": "false", "vmssApiVersion": "2017-03-30", "lbApiVersion": "2015-06-15", + "vNetApiVersion": "2015-06-15", "storageApiVersion": "2016-01-01", "publicIPApiVersion": + "2015-06-15", "nt0applicationStartPort": "20000", "nt0applicationEndPort": "30000", + "nt0ephemeralStartPort": "49152", "nt0ephemeralEndPort": "65534", "nt0fabricTcpGatewayPort": + "19000", "nt0fabricHttpGatewayPort": "19080", "subnet0Name": "Subnet-0", "subnet0Prefix": + "10.0.0.0/24", "subnet0Ref": "[concat(variables(''vnetID''),''/subnets/'',variables(''subnet0Name''))]", + "supportLogStorageAccountName": "[toLower( concat(''sflogs'', uniqueString(resourceGroup().id),''2''))]", + "applicationDiagnosticsStorageAccountName": "[toLower(concat(uniqueString(resourceGroup().id), + ''3'' ))]", "lbID0": "[resourceId(''Microsoft.Network/loadBalancers'',concat(''LB'',''-'', + parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", "lbIPConfig0": + "[concat(variables(''lbID0''),''/frontendIPConfigurations/LoadBalancerIPConfig'')]", + "lbPoolID0": "[concat(variables(''lbID0''),''/backendAddressPools/LoadBalancerBEAddressPool'')]", + "lbProbeID0": "[concat(variables(''lbID0''),''/probes/FabricGatewayProbe'')]", + "lbHttpProbeID0": "[concat(variables(''lbID0''),''/probes/FabricHttpGatewayProbe'')]", + "lbNatPoolID0": "[concat(variables(''lbID0''),''/inboundNatPools/LoadBalancerBEAddressNatPool'')]", + "vmNodeType0Name": "[toLower(concat(''NT1'', variables(''vmName'')))]", "vmNodeType0Size": + "[parameters(''vmSku'')]"}, "resources": [{"apiVersion": "[variables(''storageApiVersion'')]", + "type": "Microsoft.Storage/storageAccounts", "name": "[variables(''supportLogStorageAccountName'')]", + "location": "[variables(''computeLocation'')]", "dependsOn": [], "properties": + {}, "kind": "Storage", "sku": {"name": "[parameters(''supportLogStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''storageApiVersion'')]", "type": "Microsoft.Storage/storageAccounts", + "name": "[variables(''applicationDiagnosticsStorageAccountName'')]", "location": + "[variables(''computeLocation'')]", "dependsOn": [], "properties": {}, "kind": + "Storage", "sku": {"name": "[parameters(''applicationDiagnosticsStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''vNetApiVersion'')]", "type": "Microsoft.Network/virtualNetworks", + "name": "[variables(''virtualNetworkName'')]", "location": "[variables(''computeLocation'')]", + "properties": {"addressSpace": {"addressPrefixes": ["[variables(''addressPrefix'')]"]}, + "subnets": [{"name": "[variables(''subnet0Name'')]", "properties": {"addressPrefix": + "[variables(''subnet0Prefix'')]"}}]}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": "[variables(''publicIPApiVersion'')]", + "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(variables(''lbIPName''),''-'',''0'')]", + "location": "[variables(''computeLocation'')]", "properties": {"dnsSettings": + {"domainNameLabel": "[variables(''dnsName'')]"}, "publicIPAllocationMethod": + "Dynamic"}, "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''lbApiVersion'')]", "type": "Microsoft.Network/loadBalancers", + "name": "[concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name''))]", + "location": "[variables(''computeLocation'')]", "dependsOn": ["[concat(''Microsoft.Network/publicIPAddresses/'',concat(variables(''lbIPName''),''-'',''0''))]"], + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerIPConfig", + "properties": {"publicIPAddress": {"id": "[resourceId(''Microsoft.Network/publicIPAddresses'',concat(variables(''lbIPName''),''-'',''0''))]"}}}], + "backendAddressPools": [{"name": "LoadBalancerBEAddressPool", "properties": + {}}], "loadBalancingRules": [{"name": "LBRule", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricTcpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbProbeID0'')]"}, "protocol": "tcp"}}, {"name": + "LBHttpRule", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbHttpProbeID0'')]"}, "protocol": "tcp"}}, + {"name": "AppPortLBRule1", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[parameters(''loadBalancedAppPort1'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort1'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe1'')]"}, + "protocol": "tcp"}}, {"name": "AppPortLBRule2", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[parameters(''loadBalancedAppPort2'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort2'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe2'')]"}, + "protocol": "tcp"}}], "probes": [{"name": "FabricGatewayProbe", "properties": + {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricHttpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "AppPortProbe1", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[parameters(''loadBalancedAppPort1'')]", "protocol": + "tcp"}}, {"name": "AppPortProbe2", "properties": {"intervalInSeconds": 5, "numberOfProbes": + 2, "port": "[parameters(''loadBalancedAppPort2'')]", "protocol": "tcp"}}], "inboundNatPools": + [{"name": "LoadBalancerBEAddressNatPool", "properties": {"backendPort": "3389", + "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, "frontendPortRangeEnd": + "4500", "frontendPortRangeStart": "3389", "protocol": "tcp"}}]}, "tags": {"resourceType": + "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": + "[variables(''vmssApiVersion'')]", "type": "Microsoft.Compute/virtualMachineScaleSets", + "name": "[variables(''vmNodeType0Name'')]", "location": "[variables(''computeLocation'')]", + "dependsOn": ["[concat(''Microsoft.Network/virtualNetworks/'', variables(''virtualNetworkName''))]", + "[concat(''Microsoft.Network/loadBalancers/'', concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName''))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''applicationDiagnosticsStorageAccountName''))]"], + "properties": {"overprovision": "[variables(''overProvision'')]", "upgradePolicy": + {"mode": "Automatic"}, "virtualMachineProfile": {"extensionProfile": {"extensions": + [{"name": "[concat(''ServiceFabricNodeVmExt'',''_vmNodeType0Name'')]", "properties": + {"type": "ServiceFabricNode", "autoUpgradeMinorVersion": false, "protectedSettings": + {"StorageAccountKey1": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key1]", + "StorageAccountKey2": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key2]"}, + "publisher": "Microsoft.Azure.ServiceFabric", "settings": {"clusterEndpoint": + "[reference(parameters(''clusterName'')).clusterEndpoint]", "nodeTypeRef": "[variables(''vmNodeType0Name'')]", + "dataPath": "D:\\\\SvcFab", "durabilityLevel": "[parameters(''durabilityLevel'')]", + "nicPrefixOverride": "[variables(''subnet0Prefix'')]", "certificate": {"thumbprint": + "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}}, + "typeHandlerVersion": "1.1"}}, {"name": "[concat(''VMDiagnosticsVmExt'',''_vmNodeType0Name'')]", + "properties": {"type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true, "protectedSettings": + {"storageAccountName": "[variables(''applicationDiagnosticsStorageAccountName'')]", + "storageAccountKey": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''applicationDiagnosticsStorageAccountName'')),''2015-05-01-preview'').key1]", + "storageAccountEndPoint": "https://core.windows.net/"}, "publisher": "Microsoft.Azure.Diagnostics", + "settings": {"WadCfg": {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": + "50000", "EtwProviders": {"EtwEventSourceProviderConfiguration": [{"provider": + "Microsoft-ServiceFabric-Actors", "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableActorEventTable"}}, + {"provider": "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], + "EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", + "scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter": + "4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination": + "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(''applicationDiagnosticsStorageAccountName'')]"}, + "typeHandlerVersion": "1.5"}}]}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "[concat(variables(''nicName''), ''-0'')]", "properties": {"ipConfigurations": + [{"name": "[concat(variables(''nicName''),''-'',0)]", "properties": {"loadBalancerBackendAddressPools": + [{"id": "[variables(''lbPoolID0'')]"}], "loadBalancerInboundNatPools": [{"id": + "[variables(''lbNatPoolID0'')]"}], "subnet": {"id": "[variables(''subnet0Ref'')]"}}}], + "primary": true}}]}, "osProfile": {"adminPassword": "[parameters(''adminPassword'')]", + "adminUsername": "[parameters(''adminUsername'')]", "computernamePrefix": "[variables(''vmNodeType0Name'')]", + "secrets": [{"sourceVault": {"id": "[parameters(''sourceVaultValue'')]"}, "vaultCertificates": + [{"certificateStore": "[parameters(''certificateStoreValue'')]", "certificateUrl": + "[parameters(''certificateUrlValue'')]"}]}]}, "storageProfile": {"imageReference": + {"publisher": "[parameters(''vmImagePublisher'')]", "offer": "[parameters(''vmImageOffer'')]", + "sku": "[parameters(''vmImageSku'')]", "version": "[parameters(''vmImageVersion'')]"}, + "osDisk": {"caching": "ReadOnly", "createOption": "FromImage", "managedDisk": + {"storageAccountType": "[parameters(''storageAccountType'')]"}}}}}, "sku": {"name": + "[variables(''vmNodeType0Size'')]", "capacity": "[parameters(''nt0InstanceCount'')]", + "tier": "Standard"}, "tags": {"resourceType": "Service Fabric", "clusterName": + "[parameters(''clusterName'')]"}}, {"apiVersion": "2017-07-01-preview", "type": + "Microsoft.ServiceFabric/clusters", "name": "[parameters(''clusterName'')]", + "location": "[parameters(''clusterLocation'')]", "dependsOn": ["[concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName''))]"], "properties": {"certificate": + {"thumbprint": "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}, + "clientCertificateCommonNames": [], "clientCertificateThumbprints": [], "clusterState": + "Default", "diagnosticsStorageAccountConfig": {"blobEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.blob]", + "protectedAccountKeyName": "StorageAccountKey1", "queueEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.queue]", + "storageAccountName": "[variables(''supportLogStorageAccountName'')]", "tableEndpoint": + "[reference(concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName'')), + variables(''storageApiVersion'')).primaryEndpoints.table]"}, "fabricSettings": + [{"parameters": [{"name": "ClusterProtectionLevel", "value": "[parameters(''clusterProtectionLevel'')]"}], + "name": "Security"}], "addonFeatures": ["DnsService"], "managementEndpoint": + "[concat(''https://'',reference(concat(variables(''lbIPName''),''-'',''0'')).dnsSettings.fqdn,'':'',variables(''nt0fabricHttpGatewayPort''))]", + "nodeTypes": [{"name": "[variables(''vmNodeType0Name'')]", "applicationPorts": + {"endPort": "[variables(''nt0applicationEndPort'')]", "startPort": "[variables(''nt0applicationStartPort'')]"}, + "clientConnectionEndpointPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "durabilityLevel": "[parameters(''durabilityLevel'')]", "ephemeralPorts": {"endPort": + "[variables(''nt0ephemeralEndPort'')]", "startPort": "[variables(''nt0ephemeralStartPort'')]"}, + "httpGatewayEndpointPort": "[variables(''nt0fabricHttpGatewayPort'')]", "isPrimary": + true, "vmInstanceCount": "[parameters(''nt0InstanceCount'')]"}], "provisioningState": + "Default", "reliabilityLevel": "[parameters(''reliabilityLevel'')]", "upgradeMode": + "Automatic", "vmImage": "Windows"}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}], "outputs": {"clusterProperties": + {"value": "[reference(parameters(''clusterName''))]", "type": "object"}}}, "parameters": + {"clusterLocation": {"value": "westus"}, "clusterName": {"value": "sfrp-cli-000004"}, + "adminUserName": {"value": "adminuser"}, "adminPassword": {"value": "Pass123!@#"}, + "vmImagePublisher": {"value": "MicrosoftWindowsServer"}, "vmSku": {"value": + "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": + {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": + {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": + {"value": "My"}, "certificateThumbprint": {"value": "8A8665432D9E12731AB4A0BC5F7912310D913EED"}, + "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "certificateUrlvalue": {"value": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e"}, + "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": + {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, + "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": + {"value": 5}, "durabilityLevel": {"value": "Bronze"}, "reliabilityLevel": {"value": + "Silver"}}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '18909' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: POST + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/validate?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205160913","name":"AzurePSDeployment-202205160913","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Silver"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"8A8665432D9E12731AB4A0BC5F7912310D913EED"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":5}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"0001-01-01T00:00:00Z","duration":"PT0S","correlationId":"95b4c3be-bb6d-43ca-8def-0a4625ceb21e","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"validatedResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '7229' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:53 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 200 + message: OK +- request: + body: '{"properties": {"template": {"$schema": "http://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json", + "contentVersion": "1.0.0.0", "parameters": {"clusterLocation": {"type": "string", + "metadata": {"description": "Location of the Cluster"}}, "clusterName": {"type": + "string", "metadata": {"description": "Name of your cluster - Between 3 and + 23 characters. Letters and numbers only"}}, "adminUserName": {"type": "string", + "metadata": {"description": "Remote desktop user Id"}}, "durabilityLevel": {"type": + "string", "metadata": {"description": "The durability level"}}, "reliabilityLevel": + {"type": "string", "metadata": {"description": "The reliability level"}}, "adminPassword": + {"type": "securestring", "metadata": {"description": "Remote desktop user password. + Must be a strong password"}}, "vmImagePublisher": {"type": "string", "defaultValue": + "MicrosoftWindowsServer", "metadata": {"description": "VM image Publisher"}}, + "vmImageOffer": {"type": "string", "defaultValue": "WindowsServer", "metadata": + {"description": "VM image offer"}}, "vmImageSku": {"type": "string", "metadata": + {"description": "VM image SKU"}}, "vmSku": {"type": "string", "metadata": {"description": + "VM SKU"}}, "vmImageVersion": {"type": "string", "defaultValue": "latest", "metadata": + {"description": "VM image version"}}, "loadBalancedAppPort1": {"type": "int", + "defaultValue": 80, "metadata": {"description": "Input endpoint1 for the application + to use. Replace it with what your application uses"}}, "loadBalancedAppPort2": + {"type": "int", "defaultValue": 8081, "metadata": {"description": "Input endpoint2 + for the application to use. Replace it with what your application uses"}}, "certificateStoreValue": + {"type": "string", "allowedValues": ["My"], "defaultValue": "My", "metadata": + {"description": "The store name where the cert will be deployed in the virtual + machine"}}, "certificateThumbprint": {"type": "string", "metadata": {"description": + "Certificate Thumbprint"}}, "sourceVaultValue": {"type": "string", "metadata": + {"description": "Resource Id of the key vault, is should be in the format of + /subscriptions//resourceGroups//providers/Microsoft.KeyVault/vaults/"}}, "certificateUrlValue": {"type": "string", "metadata": {"description": + "Refers to the location URL in your key vault where the certificate was uploaded, + it is should be in the format of https://.vault.azure.net:443/secrets/"}}, "clusterProtectionLevel": {"type": "string", "allowedValues": + ["None", "Sign", "EncryptAndSign"], "defaultValue": "EncryptAndSign", "metadata": + {"description": "Protection level.Three values are allowed - EncryptAndSign, + Sign, None. It is best to keep the default of EncryptAndSign, unless you have + a need not to"}}, "storageAccountType": {"type": "string", "allowedValues": + ["Standard_LRS", "Standard_GRS"], "defaultValue": "Standard_LRS", "metadata": + {"description": "Replication option for the VM image storage account"}}, "supportLogStorageAccountType": + {"type": "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the support + log storage account"}}, "applicationDiagnosticsStorageAccountType": {"type": + "string", "allowedValues": ["Standard_LRS", "Standard_GRS"], "defaultValue": + "Standard_LRS", "metadata": {"description": "Replication option for the application + diagnostics storage account"}}, "nt0InstanceCount": {"type": "int", "metadata": + {"description": "Instance count for node type"}}}, "variables": {"computeLocation": + "[parameters(''clusterLocation'')]", "dnsName": "[parameters(''clusterName'')]", + "vmName": "vm", "publicIPAddressName": "PublicIP-VM", "publicIPAddressType": + "Dynamic", "vmStorageAccountContainerName": "vhds", "virtualNetworkName": "VNet", + "addressPrefix": "10.0.0.0/16", "nicName": "NIC", "lbName": "LoadBalancer", + "lbIPName": "PublicIP-LB-FE", "availSetName": "AvailabilitySet", "maxPercentUpgradeDomainDeltaUnhealthyNodes": + "100", "vnetID": "[resourceId(''Microsoft.Network/virtualNetworks'',variables(''virtualNetworkName''))]", + "overProvision": "false", "vmssApiVersion": "2017-03-30", "lbApiVersion": "2015-06-15", + "vNetApiVersion": "2015-06-15", "storageApiVersion": "2016-01-01", "publicIPApiVersion": + "2015-06-15", "nt0applicationStartPort": "20000", "nt0applicationEndPort": "30000", + "nt0ephemeralStartPort": "49152", "nt0ephemeralEndPort": "65534", "nt0fabricTcpGatewayPort": + "19000", "nt0fabricHttpGatewayPort": "19080", "subnet0Name": "Subnet-0", "subnet0Prefix": + "10.0.0.0/24", "subnet0Ref": "[concat(variables(''vnetID''),''/subnets/'',variables(''subnet0Name''))]", + "supportLogStorageAccountName": "[toLower( concat(''sflogs'', uniqueString(resourceGroup().id),''2''))]", + "applicationDiagnosticsStorageAccountName": "[toLower(concat(uniqueString(resourceGroup().id), + ''3'' ))]", "lbID0": "[resourceId(''Microsoft.Network/loadBalancers'',concat(''LB'',''-'', + parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", "lbIPConfig0": + "[concat(variables(''lbID0''),''/frontendIPConfigurations/LoadBalancerIPConfig'')]", + "lbPoolID0": "[concat(variables(''lbID0''),''/backendAddressPools/LoadBalancerBEAddressPool'')]", + "lbProbeID0": "[concat(variables(''lbID0''),''/probes/FabricGatewayProbe'')]", + "lbHttpProbeID0": "[concat(variables(''lbID0''),''/probes/FabricHttpGatewayProbe'')]", + "lbNatPoolID0": "[concat(variables(''lbID0''),''/inboundNatPools/LoadBalancerBEAddressNatPool'')]", + "vmNodeType0Name": "[toLower(concat(''NT1'', variables(''vmName'')))]", "vmNodeType0Size": + "[parameters(''vmSku'')]"}, "resources": [{"apiVersion": "[variables(''storageApiVersion'')]", + "type": "Microsoft.Storage/storageAccounts", "name": "[variables(''supportLogStorageAccountName'')]", + "location": "[variables(''computeLocation'')]", "dependsOn": [], "properties": + {}, "kind": "Storage", "sku": {"name": "[parameters(''supportLogStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''storageApiVersion'')]", "type": "Microsoft.Storage/storageAccounts", + "name": "[variables(''applicationDiagnosticsStorageAccountName'')]", "location": + "[variables(''computeLocation'')]", "dependsOn": [], "properties": {}, "kind": + "Storage", "sku": {"name": "[parameters(''applicationDiagnosticsStorageAccountType'')]"}, + "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''vNetApiVersion'')]", "type": "Microsoft.Network/virtualNetworks", + "name": "[variables(''virtualNetworkName'')]", "location": "[variables(''computeLocation'')]", + "properties": {"addressSpace": {"addressPrefixes": ["[variables(''addressPrefix'')]"]}, + "subnets": [{"name": "[variables(''subnet0Name'')]", "properties": {"addressPrefix": + "[variables(''subnet0Prefix'')]"}}]}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": "[variables(''publicIPApiVersion'')]", + "type": "Microsoft.Network/publicIPAddresses", "name": "[concat(variables(''lbIPName''),''-'',''0'')]", + "location": "[variables(''computeLocation'')]", "properties": {"dnsSettings": + {"domainNameLabel": "[variables(''dnsName'')]"}, "publicIPAllocationMethod": + "Dynamic"}, "tags": {"resourceType": "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, + {"apiVersion": "[variables(''lbApiVersion'')]", "type": "Microsoft.Network/loadBalancers", + "name": "[concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name''))]", + "location": "[variables(''computeLocation'')]", "dependsOn": ["[concat(''Microsoft.Network/publicIPAddresses/'',concat(variables(''lbIPName''),''-'',''0''))]"], + "properties": {"frontendIPConfigurations": [{"name": "LoadBalancerIPConfig", + "properties": {"publicIPAddress": {"id": "[resourceId(''Microsoft.Network/publicIPAddresses'',concat(variables(''lbIPName''),''-'',''0''))]"}}}], + "backendAddressPools": [{"name": "LoadBalancerBEAddressPool", "properties": + {}}], "loadBalancingRules": [{"name": "LBRule", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricTcpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbProbeID0'')]"}, "protocol": "tcp"}}, {"name": + "LBHttpRule", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[variables(''nt0fabricHttpGatewayPort'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[variables(''lbHttpProbeID0'')]"}, "protocol": "tcp"}}, + {"name": "AppPortLBRule1", "properties": {"backendAddressPool": {"id": "[variables(''lbPoolID0'')]"}, + "backendPort": "[parameters(''loadBalancedAppPort1'')]", "enableFloatingIP": + "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort1'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe1'')]"}, + "protocol": "tcp"}}, {"name": "AppPortLBRule2", "properties": {"backendAddressPool": + {"id": "[variables(''lbPoolID0'')]"}, "backendPort": "[parameters(''loadBalancedAppPort2'')]", + "enableFloatingIP": "false", "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, + "frontendPort": "[parameters(''loadBalancedAppPort2'')]", "idleTimeoutInMinutes": + "5", "probe": {"id": "[concat(variables(''lbID0''),''/probes/AppPortProbe2'')]"}, + "protocol": "tcp"}}], "probes": [{"name": "FabricGatewayProbe", "properties": + {"intervalInSeconds": 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricTcpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "FabricHttpGatewayProbe", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[variables(''nt0fabricHttpGatewayPort'')]", + "protocol": "tcp"}}, {"name": "AppPortProbe1", "properties": {"intervalInSeconds": + 5, "numberOfProbes": 2, "port": "[parameters(''loadBalancedAppPort1'')]", "protocol": + "tcp"}}, {"name": "AppPortProbe2", "properties": {"intervalInSeconds": 5, "numberOfProbes": + 2, "port": "[parameters(''loadBalancedAppPort2'')]", "protocol": "tcp"}}], "inboundNatPools": + [{"name": "LoadBalancerBEAddressNatPool", "properties": {"backendPort": "3389", + "frontendIPConfiguration": {"id": "[variables(''lbIPConfig0'')]"}, "frontendPortRangeEnd": + "4500", "frontendPortRangeStart": "3389", "protocol": "tcp"}}]}, "tags": {"resourceType": + "Service Fabric", "clusterName": "[parameters(''clusterName'')]"}}, {"apiVersion": + "[variables(''vmssApiVersion'')]", "type": "Microsoft.Compute/virtualMachineScaleSets", + "name": "[variables(''vmNodeType0Name'')]", "location": "[variables(''computeLocation'')]", + "dependsOn": ["[concat(''Microsoft.Network/virtualNetworks/'', variables(''virtualNetworkName''))]", + "[concat(''Microsoft.Network/loadBalancers/'', concat(''LB'',''-'', parameters(''clusterName''),''-'',variables(''vmNodeType0Name'')))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName''))]", + "[concat(''Microsoft.Storage/storageAccounts/'', variables(''applicationDiagnosticsStorageAccountName''))]"], + "properties": {"overprovision": "[variables(''overProvision'')]", "upgradePolicy": + {"mode": "Automatic"}, "virtualMachineProfile": {"extensionProfile": {"extensions": + [{"name": "[concat(''ServiceFabricNodeVmExt'',''_vmNodeType0Name'')]", "properties": + {"type": "ServiceFabricNode", "autoUpgradeMinorVersion": false, "protectedSettings": + {"StorageAccountKey1": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key1]", + "StorageAccountKey2": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''supportLogStorageAccountName'')),''2015-05-01-preview'').key2]"}, + "publisher": "Microsoft.Azure.ServiceFabric", "settings": {"clusterEndpoint": + "[reference(parameters(''clusterName'')).clusterEndpoint]", "nodeTypeRef": "[variables(''vmNodeType0Name'')]", + "dataPath": "D:\\\\SvcFab", "durabilityLevel": "[parameters(''durabilityLevel'')]", + "nicPrefixOverride": "[variables(''subnet0Prefix'')]", "certificate": {"thumbprint": + "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}}, + "typeHandlerVersion": "1.1"}}, {"name": "[concat(''VMDiagnosticsVmExt'',''_vmNodeType0Name'')]", + "properties": {"type": "IaaSDiagnostics", "autoUpgradeMinorVersion": true, "protectedSettings": + {"storageAccountName": "[variables(''applicationDiagnosticsStorageAccountName'')]", + "storageAccountKey": "[listKeys(resourceId(''Microsoft.Storage/storageAccounts'', + variables(''applicationDiagnosticsStorageAccountName'')),''2015-05-01-preview'').key1]", + "storageAccountEndPoint": "https://core.windows.net/"}, "publisher": "Microsoft.Azure.Diagnostics", + "settings": {"WadCfg": {"DiagnosticMonitorConfiguration": {"overallQuotaInMB": + "50000", "EtwProviders": {"EtwEventSourceProviderConfiguration": [{"provider": + "Microsoft-ServiceFabric-Actors", "scheduledTransferKeywordFilter": "1", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableActorEventTable"}}, + {"provider": "Microsoft-ServiceFabric-Services", "scheduledTransferPeriod": + "PT5M", "DefaultEvents": {"eventDestination": "ServiceFabricReliableServiceEventTable"}}], + "EtwManifestProviderConfiguration": [{"provider": "cbd93bc2-71e5-4566-b3a7-595d8eeca6e8", + "scheduledTransferLogLevelFilter": "Information", "scheduledTransferKeywordFilter": + "4611686018427387904", "scheduledTransferPeriod": "PT5M", "DefaultEvents": {"eventDestination": + "ServiceFabricSystemEventTable"}}]}}}, "StorageAccount": "[variables(''applicationDiagnosticsStorageAccountName'')]"}, + "typeHandlerVersion": "1.5"}}]}, "networkProfile": {"networkInterfaceConfigurations": + [{"name": "[concat(variables(''nicName''), ''-0'')]", "properties": {"ipConfigurations": + [{"name": "[concat(variables(''nicName''),''-'',0)]", "properties": {"loadBalancerBackendAddressPools": + [{"id": "[variables(''lbPoolID0'')]"}], "loadBalancerInboundNatPools": [{"id": + "[variables(''lbNatPoolID0'')]"}], "subnet": {"id": "[variables(''subnet0Ref'')]"}}}], + "primary": true}}]}, "osProfile": {"adminPassword": "[parameters(''adminPassword'')]", + "adminUsername": "[parameters(''adminUsername'')]", "computernamePrefix": "[variables(''vmNodeType0Name'')]", + "secrets": [{"sourceVault": {"id": "[parameters(''sourceVaultValue'')]"}, "vaultCertificates": + [{"certificateStore": "[parameters(''certificateStoreValue'')]", "certificateUrl": + "[parameters(''certificateUrlValue'')]"}]}]}, "storageProfile": {"imageReference": + {"publisher": "[parameters(''vmImagePublisher'')]", "offer": "[parameters(''vmImageOffer'')]", + "sku": "[parameters(''vmImageSku'')]", "version": "[parameters(''vmImageVersion'')]"}, + "osDisk": {"caching": "ReadOnly", "createOption": "FromImage", "managedDisk": + {"storageAccountType": "[parameters(''storageAccountType'')]"}}}}}, "sku": {"name": + "[variables(''vmNodeType0Size'')]", "capacity": "[parameters(''nt0InstanceCount'')]", + "tier": "Standard"}, "tags": {"resourceType": "Service Fabric", "clusterName": + "[parameters(''clusterName'')]"}}, {"apiVersion": "2017-07-01-preview", "type": + "Microsoft.ServiceFabric/clusters", "name": "[parameters(''clusterName'')]", + "location": "[parameters(''clusterLocation'')]", "dependsOn": ["[concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName''))]"], "properties": {"certificate": + {"thumbprint": "[parameters(''certificateThumbprint'')]", "x509StoreName": "[parameters(''certificateStoreValue'')]"}, + "clientCertificateCommonNames": [], "clientCertificateThumbprints": [], "clusterState": + "Default", "diagnosticsStorageAccountConfig": {"blobEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.blob]", + "protectedAccountKeyName": "StorageAccountKey1", "queueEndpoint": "[reference(concat(''Microsoft.Storage/storageAccounts/'', + variables(''supportLogStorageAccountName'')), variables(''storageApiVersion'')).primaryEndpoints.queue]", + "storageAccountName": "[variables(''supportLogStorageAccountName'')]", "tableEndpoint": + "[reference(concat(''Microsoft.Storage/storageAccounts/'', variables(''supportLogStorageAccountName'')), + variables(''storageApiVersion'')).primaryEndpoints.table]"}, "fabricSettings": + [{"parameters": [{"name": "ClusterProtectionLevel", "value": "[parameters(''clusterProtectionLevel'')]"}], + "name": "Security"}], "addonFeatures": ["DnsService"], "managementEndpoint": + "[concat(''https://'',reference(concat(variables(''lbIPName''),''-'',''0'')).dnsSettings.fqdn,'':'',variables(''nt0fabricHttpGatewayPort''))]", + "nodeTypes": [{"name": "[variables(''vmNodeType0Name'')]", "applicationPorts": + {"endPort": "[variables(''nt0applicationEndPort'')]", "startPort": "[variables(''nt0applicationStartPort'')]"}, + "clientConnectionEndpointPort": "[variables(''nt0fabricTcpGatewayPort'')]", + "durabilityLevel": "[parameters(''durabilityLevel'')]", "ephemeralPorts": {"endPort": + "[variables(''nt0ephemeralEndPort'')]", "startPort": "[variables(''nt0ephemeralStartPort'')]"}, + "httpGatewayEndpointPort": "[variables(''nt0fabricHttpGatewayPort'')]", "isPrimary": + true, "vmInstanceCount": "[parameters(''nt0InstanceCount'')]"}], "provisioningState": + "Default", "reliabilityLevel": "[parameters(''reliabilityLevel'')]", "upgradeMode": + "Automatic", "vmImage": "Windows"}, "tags": {"resourceType": "Service Fabric", + "clusterName": "[parameters(''clusterName'')]"}}], "outputs": {"clusterProperties": + {"value": "[reference(parameters(''clusterName''))]", "type": "object"}}}, "parameters": + {"clusterLocation": {"value": "westus"}, "clusterName": {"value": "sfrp-cli-000004"}, + "adminUserName": {"value": "adminuser"}, "adminPassword": {"value": "Pass123!@#"}, + "vmImagePublisher": {"value": "MicrosoftWindowsServer"}, "vmSku": {"value": + "Standard_D2_V2"}, "vmImageOffer": {"value": "WindowsServer"}, "vmImageSku": + {"value": "2016-Datacenter"}, "vmImageVersion": {"value": "latest"}, "loadBalancedAppPort1": + {"value": 80}, "loadBalancedAppPort2": {"value": 8081}, "certificateStorevalue": + {"value": "My"}, "certificateThumbprint": {"value": "8A8665432D9E12731AB4A0BC5F7912310D913EED"}, + "sourceVaultvalue": {"value": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"}, + "certificateUrlvalue": {"value": "https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e"}, + "clusterProtectionLevel": {"value": "EncryptAndSign"}, "storageAccountType": + {"value": "Standard_LRS"}, "supportLogStorageAccountType": {"value": "Standard_LRS"}, + "applicationDiagnosticsStorageAccountType": {"value": "Standard_LRS"}, "nt0InstanceCount": + {"value": 5}, "durabilityLevel": {"value": "Bronze"}, "reliabilityLevel": {"value": + "Silver"}}, "mode": "incremental"}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + Content-Length: + - '18909' + Content-Type: + - application/json + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205160913","name":"AzurePSDeployment-202205160913","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Silver"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"8A8665432D9E12731AB4A0BC5F7912310D913EED"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":5}},"mode":"Incremental","provisioningState":"Accepted","timestamp":"2022-05-16T16:13:56.6531372Z","duration":"PT0.0009294S","correlationId":"66642469-8643-4520-8f28-896d5055fd6b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}]}}' + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205160913/operationStatuses/08585488892505152936?api-version=2021-04-01 + cache-control: + - no-cache + content-length: + - '6150' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:13:56 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 201 + message: Created +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:14:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:14:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:15:27 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:15:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:16:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:16:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:17:26 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:17:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:18:27 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:18:57 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:19:27 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:19:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:20:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:20:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:21:27 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:21:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:22:28 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:22:58 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:23:29 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?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: + - Mon, 16 May 2022 16:23:59 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment/operationStatuses/08585488892505152936?api-version=2021-04-01 + response: + body: + string: '{"status":"Succeeded"}' + headers: + cache-control: + - no-cache + content-length: + - '22' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:24:29 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: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-resource/21.1.0b1 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.Resources/deployments/mock-deployment?api-version=2021-04-01 + response: + body: + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Resources/deployments/AzurePSDeployment-202205160913","name":"AzurePSDeployment-202205160913","type":"Microsoft.Resources/deployments","properties":{"templateHash":"6038264192997917175","parameters":{"clusterLocation":{"type":"String","value":"westus"},"clusterName":{"type":"String","value":"sfrp-cli-000004"},"adminUserName":{"type":"String","value":"adminuser"},"durabilityLevel":{"type":"String","value":"Bronze"},"reliabilityLevel":{"type":"String","value":"Silver"},"adminPassword":{"type":"SecureString"},"vmImagePublisher":{"type":"String","value":"MicrosoftWindowsServer"},"vmImageOffer":{"type":"String","value":"WindowsServer"},"vmImageSku":{"type":"String","value":"2016-Datacenter"},"vmSku":{"type":"String","value":"Standard_D2_V2"},"vmImageVersion":{"type":"String","value":"latest"},"loadBalancedAppPort1":{"type":"Int","value":80},"loadBalancedAppPort2":{"type":"Int","value":8081},"certificateStoreValue":{"type":"String","value":"My"},"certificateThumbprint":{"type":"String","value":"8A8665432D9E12731AB4A0BC5F7912310D913EED"},"sourceVaultValue":{"type":"String","value":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001"},"certificateUrlValue":{"type":"String","value":"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e"},"clusterProtectionLevel":{"type":"String","value":"EncryptAndSign"},"storageAccountType":{"type":"String","value":"Standard_LRS"},"supportLogStorageAccountType":{"type":"String","value":"Standard_LRS"},"applicationDiagnosticsStorageAccountType":{"type":"String","value":"Standard_LRS"},"nt0InstanceCount":{"type":"Int","value":5}},"mode":"Incremental","provisioningState":"Succeeded","timestamp":"2022-05-16T16:24:19.1559097Z","duration":"PT10M22.5037019S","correlationId":"66642469-8643-4520-8f28-896d5055fd6b","providers":[{"namespace":"Microsoft.Storage","resourceTypes":[{"resourceType":"storageAccounts","locations":["westus"]}]},{"namespace":"Microsoft.Network","resourceTypes":[{"resourceType":"virtualNetworks","locations":["westus"]},{"resourceType":"publicIPAddresses","locations":["westus"]},{"resourceType":"loadBalancers","locations":["westus"]}]},{"namespace":"Microsoft.Compute","resourceTypes":[{"resourceType":"virtualMachineScaleSets","locations":["westus"]}]},{"namespace":"Microsoft.ServiceFabric","resourceTypes":[{"resourceType":"clusters","locations":["westus"]}]}],"dependencies":[{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet","resourceType":"Microsoft.Network/virtualNetworks","resourceName":"VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm","resourceType":"Microsoft.Network/loadBalancers","resourceName":"LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","actionName":"listKeys","apiVersion":"2015-05-01-preview"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"tbrtxaeb2t72q3","actionName":"listKeys","apiVersion":"2015-05-01-preview"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm","resourceType":"Microsoft.Compute/virtualMachineScaleSets","resourceName":"nt1vm"},{"dependsOn":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2","resourceType":"Microsoft.Storage/storageAccounts","resourceName":"sflogstbrtxaeb2t72q2","apiVersion":"2016-01-01"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0","resourceType":"Microsoft.Network/publicIPAddresses","resourceName":"PublicIP-LB-FE-0"}],"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004","resourceType":"Microsoft.ServiceFabric/clusters","resourceName":"sfrp-cli-000004"}],"outputs":{"clusterProperties":{"type":"Object","value":{"provisioningState":"Succeeded","clusterId":"a03f969e-51ab-480f-9fde-4957526346b7","clusterCodeVersion":"9.0.1017.9590","clusterState":"WaitingForNodes","managementEndpoint":"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080","clusterEndpoint":"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7","certificate":{"thumbprint":"8A8665432D9E12731AB4A0BC5F7912310D913EED","x509StoreName":"My"},"clientCertificateThumbprints":[],"clientCertificateCommonNames":[],"fabricSettings":[{"name":"Security","parameters":[{"name":"ClusterProtectionLevel","value":"EncryptAndSign"}]}],"vmImage":"Windows","reliabilityLevel":"Silver","nodeTypes":[{"name":"nt1vm","vmInstanceCount":5,"clientConnectionEndpointPort":19000,"httpGatewayEndpointPort":19080,"applicationPorts":{"startPort":20000,"endPort":30000},"ephemeralPorts":{"startPort":49152,"endPort":65534},"isPrimary":true,"durabilityLevel":"Bronze"}],"diagnosticsStorageAccountConfig":{"storageAccountName":"sflogstbrtxaeb2t72q2","primaryAccessKey":"","secondaryAccessKey":"","protectedAccountKeyName":"StorageAccountKey1","blobEndpoint":"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/","queueEndpoint":"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/","tableEndpoint":"https://sflogstbrtxaeb2t72q2.table.core.windows.net/"},"upgradeMode":"Automatic","availableClusterVersions":[{"codeVersion":"9.0.1017.9590","supportExpiryUtc":"9999-12-31T23:59:59.9999999","environment":"Windows"}],"addonFeatures":["DnsService"]}}},"outputResources":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/publicIPAddresses/PublicIP-LB-FE-0"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/sflogstbrtxaeb2t72q2"},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Storage/storageAccounts/tbrtxaeb2t72q3"}]}}' + headers: + cache-control: + - no-cache + content-length: + - '8820' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 16:24:29 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: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster create + Connection: + - keep-alive + ParameterSetName: + - -g -c -l --certificate-output-folder --certificate-subject-name --vm-password + --cluster-size + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:24:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:24:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:24:30 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:25:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:26:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:27:31 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:28:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Deploying\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2834' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:29:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2840' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:30:32 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"BaselineUpgrade\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2840' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:31:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster show + Connection: + - keep-alive + ParameterSetName: + - -g -c + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2830' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:32:33 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331720\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:14:27.4377221+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2830' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:32:34 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"fabricSettings": [{"name": "Security", "parameters": [{"name": + "ClusterProtectionLevel", "value": "EncryptAndSign"}]}, {"name": "NamingService", + "parameters": [{"name": "MaxOperationTimeout", "value": "10001"}]}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + Content-Length: + - '231' + Content-Type: + - application/json + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331721\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:32:36.6764514+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"UpdatingUserConfiguration\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + cache-control: + - no-cache + content-length: + - '2849' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:32:36 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:33:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:34:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:34:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:35:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3373' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:35:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3373' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:36:06 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3797' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:36:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3797' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:37:07 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:37:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:38:07 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:38:37 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3792' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:39:07 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3801' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:39:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3801' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:40:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:40:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:41:07 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:41:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:42:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3805' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:42:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3805' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:43:08 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:43:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:44:09 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:44:39 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:45:09 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3809' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:45:39 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3809' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:46:09 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:46:39 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:47:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:47:40 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:48:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3785' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:48:40 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3785' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:49:09 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3781' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:49:39 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3781' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:50:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3781' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:50:40 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"2\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:34:36.5610542Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3781' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:51:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/f776efc7-d888-45d7-8179-bb1abd690197\",\r\n + \ \"name\": \"f776efc7-d888-45d7-8179-bb1abd690197\",\r\n \"status\": \"Succeeded\",\r\n + \ \"startTime\": \"2022-05-16T16:32:36.7025432Z\",\r\n \"endTime\": \"2022-05-16T16:51:33.572734Z\",\r\n + \ \"percentComplete\": 100.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '365' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:51:40 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting set + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter --value + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331721\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:32:36.6764514+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": + \"10001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"vmImage\": + \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": + [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3019' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:51:40 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331721\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:32:36.6764514+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": + \"10001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"vmImage\": + \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": + [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3019' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:51:41 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: '{"properties": {"fabricSettings": [{"name": "Security", "parameters": [{"name": + "ClusterProtectionLevel", "value": "EncryptAndSign"}]}]}}' + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + Content-Length: + - '137' + Content-Type: + - application/json + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: PATCH + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331722\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:51:43.1621753+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"UpdatingUserConfiguration\",\r\n + \ \"managementEndpoint\": \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n + \ \"clusterEndpoint\": \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ },\r\n {\r\n \"name\": \"NamingService\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"MaxOperationTimeout\",\r\n \"value\": + \"10001\"\r\n }\r\n ]\r\n }\r\n ],\r\n \"vmImage\": + \"Windows\",\r\n \"reliabilityLevel\": \"Silver\",\r\n \"nodeTypes\": + [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"vmInstanceCount\": + 5,\r\n \"clientConnectionEndpointPort\": 19000,\r\n \"httpGatewayEndpointPort\": + 19080,\r\n \"applicationPorts\": {\r\n \"startPort\": 20000,\r\n + \ \"endPort\": 30000\r\n },\r\n \"ephemeralPorts\": + {\r\n \"startPort\": 49152,\r\n \"endPort\": 65534\r\n },\r\n + \ \"isPrimary\": true,\r\n \"durabilityLevel\": \"Bronze\"\r\n + \ }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": {\r\n \"storageAccountName\": + \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": \"\",\r\n \"secondaryAccessKey\": + \"\",\r\n \"protectedAccountKeyName\": \"StorageAccountKey1\",\r\n \"blobEndpoint\": + \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n \"queueEndpoint\": + \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n \"tableEndpoint\": + \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n \"protectedAccountKeyName2\": + \"\"\r\n },\r\n \"upgradeMode\": \"Automatic\",\r\n \"addonFeatures\": + [\r\n \"DnsService\"\r\n ],\r\n \"availableClusterVersions\": [\r\n + \ {\r\n \"codeVersion\": \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": + \"9999-12-31T23:59:59.9999999\",\r\n \"environment\": \"Windows\"\r\n + \ }\r\n ]\r\n }\r\n}" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + cache-control: + - no-cache + content-length: + - '3038' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:51:42 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operationResults/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0,Microsoft-HTTPAPI/2.0 Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-writes: + - '1199' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:52:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:53:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:53: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"Created\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '353' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:54:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3372' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:54:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[],\\\"upgradeUnits\\\":[],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3372' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:55:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:55: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:00:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"0\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3796' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:56:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3791' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:56: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:01:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3791' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:57:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3791' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:57: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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"1\\\",\\\"upgradeDuration\\\":\\\"00:02:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3791' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:58:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:58:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:03:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"1\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3800' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:59:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3795' + content-type: + - application/json + date: + - Mon, 16 May 2022 16:59:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:04:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3795' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:00:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3795' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:00:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"2\\\",\\\"upgradeDuration\\\":\\\"00:05:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3795' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:01:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:01:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:06:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"2\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3804' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:02:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:02:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:07:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:03:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:03:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Pending\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"3\\\",\\\"upgradeDuration\\\":\\\"00:08:00\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3799' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:04:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3808' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:04:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:09:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"3\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3808' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:05:14 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:05:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:10:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:06:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:06:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardPending\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Pending\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Pending\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"nextUpgradeDomain\\\":\\\"4\\\",\\\"upgradeDuration\\\":\\\"00:11:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3803' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:07:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3784' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:07:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"InProgress\\\",\\\"name\\\":\\\"4\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"InProgress\\\"},{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:12:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:00:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"4\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3784' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:08:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3780' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:08:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:13:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:01:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3780' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:09:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3780' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:09:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"InProgress:{\\\"upgradeDescription\\\":{\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradePolicyDescription\\\":{\\\"healthPolicy\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyNodes\\\":100,\\\"maxPercentUnhealthyApplications\\\":0,\\\"applicationTypeHealthPolicyMap\\\":{},\\\"nodeTypeHealthPolicyMap\\\":{}},\\\"enableDeltaHealthEvaluation\\\":true,\\\"upgradeHealthPolicy\\\":{\\\"maxPercentDeltaUnhealthyNodes\\\":0,\\\"maxPercentUpgradeDomainDeltaUnhealthyNodes\\\":0},\\\"applicationHealthPolicyMap\\\":{\\\"fabric:/System\\\":{\\\"considerWarningAsError\\\":false,\\\"maxPercentUnhealthyDeployedApplications\\\":0,\\\"defaultServiceTypeHealthPolicy\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"serviceTypeHealthPolicyMap\\\":{\\\"clusterManagerServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"dnsServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"eventStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fmServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"faultAnalysisServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"fileStoreServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"namingStoreService\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0},\\\"upgradeServiceType\\\":{\\\"maxPercentUnhealthyServices\\\":0,\\\"maxPercentUnhealthyPartitionsPerService\\\":0,\\\"maxPercentUnhealthyReplicasPerPartition\\\":0}}}},\\\"monitoringPolicy\\\":{\\\"failureAction\\\":\\\"Rollback\\\",\\\"healthCheckWaitDuration\\\":\\\"00:00:30\\\",\\\"healthCheckStableDuration\\\":\\\"00:01:00\\\",\\\"healthCheckRetryTimeout\\\":\\\"00:45:00\\\",\\\"upgradeTimeout\\\":\\\"12:00:00\\\",\\\"upgradeDomainTimeout\\\":\\\"02:00:00\\\"},\\\"upgradeMode\\\":\\\"Monitored\\\",\\\"forceRestart\\\":false,\\\"upgradeReplicaSetCheckTimeout\\\":\\\"49710.06:28:15\\\",\\\"sortOrder\\\":\\\"Default\\\",\\\"instanceCloseDelayDuration\\\":\\\"49710.06:28:15\\\",\\\"kind\\\":\\\"Rolling\\\"}},\\\"targetCodeVersion\\\":\\\"9.0.1017.9590\\\",\\\"targetConfigVersion\\\":\\\"3\\\",\\\"upgradeState\\\":\\\"RollingForwardInProgress\\\",\\\"upgradeDomains\\\":[{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"0\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"1\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"2\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"3\\\"},{\\\"state\\\":\\\"Completed\\\",\\\"name\\\":\\\"4\\\"}],\\\"upgradeUnits\\\":[{\\\"name\\\":\\\"0\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"1\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"2\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"3\\\",\\\"state\\\":\\\"Completed\\\"},{\\\"name\\\":\\\"4\\\",\\\"state\\\":\\\"Completed\\\"}],\\\"rollingUpgradeMode\\\":\\\"Monitored\\\",\\\"upgradeDuration\\\":\\\"00:14:01\\\",\\\"currentUpgradeDomainDuration\\\":\\\"00:02:00\\\",\\\"unhealthyEvaluations\\\":[],\\\"currentUpgradeDomainProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"currentUpgradeUnitsProgress\\\":{\\\"upgradeDomainName\\\":\\\"\\\",\\\"nodeProgressList\\\":[]},\\\"startTimestampUtc\\\":\\\"2022-05-16T16:53:36.666857Z\\\",\\\"isNodeByNode\\\":false}\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"0001-01-01T00:00:00\",\r\n + \ \"percentComplete\": 0.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '3780' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:10:15 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188?api-version=2020-03-01 + response: + body: + string: "{\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ServiceFabric/locations/westus/operations/282a39b8-f687-4024-88e8-42c11876b188\",\r\n + \ \"name\": \"282a39b8-f687-4024-88e8-42c11876b188\",\r\n \"status\": \"Succeeded\",\r\n + \ \"startTime\": \"2022-05-16T16:51:43.1821567Z\",\r\n \"endTime\": \"2022-05-16T17:10:33.7554904Z\",\r\n + \ \"percentComplete\": 100.0\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '366' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:10:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - '*/*' + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster setting remove + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --section --parameter + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331722\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:51:43.1621753+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2830' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:10:45 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster reliability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --reliability-level + User-Agent: + - AZURECLI/2.36.0 azsdk-python-mgmt-servicefabric/1.0.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004?api-version=2020-03-01 + response: + body: + string: "{\r\n \"type\": \"Microsoft.ServiceFabric/clusters\",\r\n \"location\": + \"westus\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/clitest.rg000001/providers/Microsoft.ServiceFabric/clusters/sfrp-cli-000004\",\r\n + \ \"name\": \"sfrp-cli-000004\",\r\n \"tags\": {\r\n \"resourceType\": + \"Service Fabric\",\r\n \"clusterName\": \"sfrp-cli-000004\"\r\n },\r\n + \ \"etag\": \"W/\\\"637883144678331722\\\"\",\r\n \"systemData\": {\r\n \"createdBy\": + \"alsantam@microsoft.com\",\r\n \"createdByType\": \"User\",\r\n \"createdAt\": + \"2022-05-16T16:14:27.4377221+00:00\",\r\n \"lastModifiedBy\": \"alsantam@microsoft.com\",\r\n + \ \"lastModifiedByType\": \"User\",\r\n \"lastModifiedAt\": \"2022-05-16T16:51:43.1621753+00:00\"\r\n + \ },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n + \ \"clusterId\": \"a03f969e-51ab-480f-9fde-4957526346b7\",\r\n \"clusterCodeVersion\": + \"9.0.1017.9590\",\r\n \"clusterState\": \"Ready\",\r\n \"managementEndpoint\": + \"https://sfrp-cli-000004.westus.cloudapp.azure.com:19080\",\r\n \"clusterEndpoint\": + \"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\r\n + \ \"certificate\": {\r\n \"thumbprint\": \"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\r\n + \ \"x509StoreName\": \"My\"\r\n },\r\n \"clientCertificateThumbprints\": + [],\r\n \"clientCertificateCommonNames\": [],\r\n \"fabricSettings\": + [\r\n {\r\n \"name\": \"Security\",\r\n \"parameters\": + [\r\n {\r\n \"name\": \"ClusterProtectionLevel\",\r\n + \ \"value\": \"EncryptAndSign\"\r\n }\r\n ]\r\n + \ }\r\n ],\r\n \"vmImage\": \"Windows\",\r\n \"reliabilityLevel\": + \"Silver\",\r\n \"nodeTypes\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n + \ \"vmInstanceCount\": 5,\r\n \"clientConnectionEndpointPort\": + 19000,\r\n \"httpGatewayEndpointPort\": 19080,\r\n \"applicationPorts\": + {\r\n \"startPort\": 20000,\r\n \"endPort\": 30000\r\n },\r\n + \ \"ephemeralPorts\": {\r\n \"startPort\": 49152,\r\n \"endPort\": + 65534\r\n },\r\n \"isPrimary\": true,\r\n \"durabilityLevel\": + \"Bronze\"\r\n }\r\n ],\r\n \"diagnosticsStorageAccountConfig\": + {\r\n \"storageAccountName\": \"sflogstbrtxaeb2t72q2\",\r\n \"primaryAccessKey\": + \"\",\r\n \"secondaryAccessKey\": \"\",\r\n \"protectedAccountKeyName\": + \"StorageAccountKey1\",\r\n \"blobEndpoint\": \"https://sflogstbrtxaeb2t72q2.blob.core.windows.net/\",\r\n + \ \"queueEndpoint\": \"https://sflogstbrtxaeb2t72q2.queue.core.windows.net/\",\r\n + \ \"tableEndpoint\": \"https://sflogstbrtxaeb2t72q2.table.core.windows.net/\",\r\n + \ \"protectedAccountKeyName2\": \"\"\r\n },\r\n \"upgradeMode\": + \"Automatic\",\r\n \"addonFeatures\": [\r\n \"DnsService\"\r\n ],\r\n + \ \"availableClusterVersions\": [\r\n {\r\n \"codeVersion\": + \"9.0.1017.9590\",\r\n \"supportExpiryUtc\": \"9999-12-31T23:59:59.9999999\",\r\n + \ \"environment\": \"Windows\"\r\n }\r\n ]\r\n }\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '2830' + content-type: + - application/json + date: + - Mon, 16 May 2022 17:10:46 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 + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + CommandName: + - sf cluster reliability update + Connection: + - keep-alive + ParameterSetName: + - --resource-group -c --reliability-level + User-Agent: + - AZURECLI/2.36.0 azsdk-python-azure-mgmt-compute/26.1.0 Python/3.8.10 (Windows-10-10.0.19044-SP0) + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets?api-version=2021-11-01 + response: + body: + string: "{\r\n \"value\": [\r\n {\r\n \"name\": \"nt1vm\",\r\n \"id\": + \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Compute/virtualMachineScaleSets/nt1vm\",\r\n + \ \"type\": \"Microsoft.Compute/virtualMachineScaleSets\",\r\n \"location\": + \"westus\",\r\n \"tags\": {\r\n \"resourceType\": \"Service Fabric\",\r\n + \ \"clusterName\": \"sfrp-cli-000004\",\r\n \"azsecpack\": \"nonprod\",\r\n + \ \"platformsettings.host_environment.service.platform_optedin_for_rootcerts\": + \"true\"\r\n },\r\n \"sku\": {\r\n \"name\": \"Standard_D2_V2\",\r\n + \ \"tier\": \"Standard\",\r\n \"capacity\": 5\r\n },\r\n + \ \"properties\": {\r\n \"singlePlacementGroup\": true,\r\n \"upgradePolicy\": + {\r\n \"mode\": \"Automatic\"\r\n },\r\n \"virtualMachineProfile\": + {\r\n \"osProfile\": {\r\n \"computerNamePrefix\": \"nt1vm\",\r\n + \ \"adminUsername\": \"adminuser\",\r\n \"windowsConfiguration\": + {\r\n \"provisionVMAgent\": true,\r\n \"enableAutomaticUpdates\": + true,\r\n \"enableVMAgentPlatformUpdates\": false\r\n },\r\n + \ \"secrets\": [\r\n {\r\n \"sourceVault\": + {\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.KeyVault/vaults/clitestrg000001\"\r\n + \ },\r\n \"vaultCertificates\": [\r\n {\r\n + \ \"certificateUrl\": \"https://clitestrg000001.vault.azure.net/secrets/sfrp-cli-000004/829daa0068854888baa8e666babc380e\",\r\n + \ \"certificateStore\": \"My\"\r\n }\r\n + \ ]\r\n }\r\n ]\r\n },\r\n + \ \"storageProfile\": {\r\n \"osDisk\": {\r\n \"osType\": + \"Windows\",\r\n \"createOption\": \"FromImage\",\r\n \"caching\": + \"ReadOnly\",\r\n \"managedDisk\": {\r\n \"storageAccountType\": + \"Standard_LRS\"\r\n },\r\n \"diskSizeGB\": 127\r\n + \ },\r\n \"imageReference\": {\r\n \"publisher\": + \"MicrosoftWindowsServer\",\r\n \"offer\": \"WindowsServer\",\r\n + \ \"sku\": \"2016-Datacenter\",\r\n \"version\": + \"latest\"\r\n }\r\n },\r\n \"networkProfile\": + {\"networkInterfaceConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"primary\":true,\"dnsSettings\":{\"dnsServers\":[]},\"ipConfigurations\":[{\"name\":\"NIC-0\",\"properties\":{\"subnet\":{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/virtualNetworks/VNet/subnets/Subnet-0\"},\"privateIPAddressVersion\":\"IPv4\",\"loadBalancerBackendAddressPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/backendAddressPools/LoadBalancerBEAddressPool\"}],\"loadBalancerInboundNatPools\":[{\"id\":\"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/clitest.rg000001/providers/Microsoft.Network/loadBalancers/LB-sfrp-cli-000004-nt1vm/inboundNatPools/LoadBalancerBEAddressNatPool\"}]}}]}}]},\r\n + \ \"extensionProfile\": {\r\n \"extensions\": [\r\n {\r\n + \ \"name\": \"ServiceFabricNodeVmExt_vmNodeType0Name\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + false,\r\n \"publisher\": \"Microsoft.Azure.ServiceFabric\",\r\n + \ \"type\": \"ServiceFabricNode\",\r\n \"typeHandlerVersion\": + \"1.1\",\r\n \"settings\": {\"clusterEndpoint\":\"https://westus.servicefabric.azure.com/runtime/clusters/a03f969e-51ab-480f-9fde-4957526346b7\",\"nodeTypeRef\":\"nt1vm\",\"dataPath\":\"D:\\\\\\\\SvcFab\",\"durabilityLevel\":\"Bronze\",\"nicPrefixOverride\":\"10.0.0.0/24\",\"certificate\":{\"thumbprint\":\"8A8665432D9E12731AB4A0BC5F7912310D913EED\",\"x509StoreName\":\"My\"}}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"VMDiagnosticsVmExt_vmNodeType0Name\",\r\n \"properties\": + {\r\n \"autoUpgradeMinorVersion\": true,\r\n \"publisher\": + \"Microsoft.Azure.Diagnostics\",\r\n \"type\": \"IaaSDiagnostics\",\r\n + \ \"typeHandlerVersion\": \"1.5\",\r\n \"settings\": + {\"WadCfg\":{\"DiagnosticMonitorConfiguration\":{\"overallQuotaInMB\":\"50000\",\"EtwProviders\":{\"EtwEventSourceProviderConfiguration\":[{\"provider\":\"Microsoft-ServiceFabric-Actors\",\"scheduledTransferKeywordFilter\":\"1\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableActorEventTable\"}},{\"provider\":\"Microsoft-ServiceFabric-Services\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricReliableServiceEventTable\"}}],\"EtwManifestProviderConfiguration\":[{\"provider\":\"cbd93bc2-71e5-4566-b3a7-595d8eeca6e8\",\"scheduledTransferLogLevelFilter\":\"Information\",\"scheduledTransferKeywordFilter\":\"4611686018427387904\",\"scheduledTransferPeriod\":\"PT5M\",\"DefaultEvents\":{\"eventDestination\":\"ServiceFabricSystemEventTable\"}}]}}},\"StorageAccount\":\"tbrtxaeb2t72q3\"}\r\n + \ }\r\n },\r\n {\r\n \"name\": + \"Microsoft.Azure.Security.AntimalwareSignature.AntimalwareConfiguration\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Security.AntimalwareSignature\",\r\n \"type\": + \"AntimalwareConfiguration\",\r\n \"typeHandlerVersion\": + \"2.0\",\r\n \"settings\": {}\r\n }\r\n },\r\n + \ {\r\n \"name\": \"Microsoft.Azure.Geneva.GenevaMonitoring\",\r\n + \ \"properties\": {\r\n \"autoUpgradeMinorVersion\": + true,\r\n \"enableAutomaticUpgrade\": true,\r\n \"publisher\": + \"Microsoft.Azure.Geneva\",\r\n \"type\": \"GenevaMonitoring\",\r\n + \ \"typeHandlerVersion\": \"2.0\",\r\n \"settings\": + {}\r\n }\r\n }\r\n ]\r\n }\r\n + \ },\r\n \"provisioningState\": \"Succeeded\",\r\n \"overprovision\": + false,\r\n \"doNotRunExtensionsOnOverprovisionedVMs\": false,\r\n \"uniqueId\": + \"f96a347f-8ffc-466f-bc42-e663de27159b\",\r\n \"timeCreated\": \"2022-05-16T16:14:31.9327982+00:00\"\r\n + \ }\r\n }\r\n ]\r\n}" + headers: + cache-control: + - no-cache + content-length: + - '6414' + content-type: + - application/json; charset=utf-8 + date: + - Mon, 16 May 2022 17:10:47 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - Microsoft-HTTPAPI/2.0 + - Microsoft-HTTPAPI/2.0 + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-resource: + - Microsoft.Compute/HighCostGetVMScaleSet3Min;179,Microsoft.Compute/HighCostGetVMScaleSet30Min;899 + status: + code: 200 + message: OK +version: 1 \ No newline at end of file diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py index c2b5786acc2..767217665bc 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_sf_cluster.py @@ -29,38 +29,21 @@ def test_create_cluster_with_separate_kv(self, key_vault, resource_group): _create_cluster_with_separate_kv(self, self.kwargs) _wait_for_cluster_state_ready(self, self.kwargs) - @unittest.skip('no quota, disable temporarily') @ResourceGroupPreparer() - def test_cluster(self): + def test_update_settings_and_reliability(self): self.kwargs.update({ 'kv_name': self.create_random_name('sfrp-cli-kv-', 24), 'loc': 'westus', 'cert_name': self.create_random_name('sfrp-cli-', 24), 'cluster_name': self.create_random_name('sfrp-cli-', 24), 'vm_password': "Pass123!@#", - 'priamry_node_type': 'nt1vm', - 'new_node_type': 'nt2' + 'primary_node_type': 'nt1vm', + 'new_node_type': 'nt2', + 'cluster_size': '5' }) _create_cluster(self, self.kwargs) _wait_for_cluster_state_ready(self, self.kwargs) - # add node type nt2 - self.cmd('az sf cluster node-type add -g {rg} -c {cluster_name} --node-type {new_node_type} --capacity 6 --vm-user-name admintest ' - '--vm-password {vm_password} --durability-level Bronze --vm-sku Standard_D15_v2', - checks=[self.check('provisioningState', 'Succeeded'), - self.check('length(nodeTypes)', 2), - self.check('nodeTypes[1].name', 'nt2'), - self.check('nodeTypes[1].vmInstanceCount', 6), - self.check('nodeTypes[1].durabilityLevel', 'Bronze')]) - - # remvoe node from node type nt2 - self.cmd('sf cluster node remove -g {rg} -c {cluster_name} --node-type {new_node_type} --number-of-nodes-to-remove 1', - checks=[self.check('nodeTypes[1].vmInstanceCount', 5)]) - - # update to duribility to Silver of node type nt2 - self.cmd('sf cluster durability update --resource-group {rg} -c {cluster_name} --durability-level Silver --node-type {new_node_type}', - checks=[self.check('nodeTypes[1].durabilityLevel', 'Silver')]) - # add setting self.cmd('sf cluster setting set --resource-group {rg} -c {cluster_name} --section NamingService --parameter MaxOperationTimeout --value 10001', checks=[self.check('length(fabricSettings)', 2), @@ -73,14 +56,73 @@ def test_cluster(self): checks=[self.check('length(fabricSettings)', 1), self.check('fabricSettings[0].name', 'Security')]) - # add node primary node type nt1vm - self.cmd('sf cluster node add -g {rg} -c {cluster_name} --node-type {priamry_node_type} --number-of-nodes-to-add 2', - checks=[self.check('nodeTypes[0].vmInstanceCount', 5)]) - # update reliability to Silver self.cmd('sf cluster reliability update --resource-group {rg} -c {cluster_name} --reliability-level Silver', checks=[self.check('reliabilityLevel', 'Silver')]) + @ResourceGroupPreparer(location='southcentralus') + def test_add_secondary_node_type_add_remove_node(self): + self.kwargs.update({ + 'kv_name': self.create_random_name('sfrp-cli-kv-', 24), + 'loc': 'southcentralus', + 'cert_name': self.create_random_name('sfrp-cli-', 24), + 'cluster_name': self.create_random_name('sfrp-cli-', 24), + 'vm_password': "Pass123!@#", + 'cluster_size': '3', + 'new_node_type': 'nt2' + }) + _create_cluster(self, self.kwargs) + _wait_for_cluster_state_ready(self, self.kwargs) + + # add node type nt2 + self.cmd('az sf cluster node-type add -g {rg} -c {cluster_name} --node-type {new_node_type} --capacity 5 --vm-user-name admintest ' + '--vm-password {vm_password} --durability-level Bronze --vm-sku Standard_D15_v2', + checks=[self.check('provisioningState', 'Succeeded'), + self.check('length(nodeTypes)', 2), + self.check('nodeTypes[1].name', 'nt2'), + self.check('nodeTypes[1].vmInstanceCount', 5), + self.check('nodeTypes[1].durabilityLevel', 'Bronze')]) + + # skipping add/remove node for now because begin_update method fails on test session only + # with ConnectionResetError(10054, 'An existing connection was forcibly closed by the remote host', None, 10054, None) + + # # add node to none primary node type nt2 + # self.cmd('sf cluster node add -g {rg} -c {cluster_name} --node-type {new_node_type} --number-of-nodes-to-add 2', + # checks=[self.check('nodeTypes[0].vmInstanceCount', 7)]) + + # # remove node from none primary node type nt2 + # self.cmd('sf cluster node remove -g {rg} -c {cluster_name} --node-type {new_node_type} --number-of-nodes-to-remove 1', + # checks=[self.check('nodeTypes[1].vmInstanceCount', 6)]) + + # update durability to Silver of node type nt2 + self.cmd('sf cluster durability update --resource-group {rg} -c {cluster_name} --durability-level Silver --node-type {new_node_type}', + checks=[self.check('nodeTypes[1].durabilityLevel', 'Silver')]) + + + @unittest.skip('disable temporarily, begin_update method fails on test session only with ConnectionResetError') + @ResourceGroupPreparer(location='southcentralus') + def test_primary_nt_add_remove_node(self): + self.kwargs.update({ + 'kv_name': self.create_random_name('sfrp-cli-kv-', 24), + 'loc': 'southcentralus', + 'cert_name': self.create_random_name('sfrp-cli-', 24), + 'cluster_name': self.create_random_name('sfrp-cli-', 24), + 'vm_password': "Pass123!@#", + 'primary_node_type': 'nt1vm', + 'cluster_size': '5' + }) + _create_cluster(self, self.kwargs) + _wait_for_cluster_state_ready(self, self.kwargs) + + # add node primary node type nt1vm + self.cmd('sf cluster node add -g {rg} -c {cluster_name} --node-type {primary_node_type} --number-of-nodes-to-add 2', + checks=[self.check('nodeTypes[0].vmInstanceCount', 7)]) + + # remvoe node from primary node type nt1vm + self.cmd('sf cluster node remove -g {rg} -c {cluster_name} --node-type {primary_node_type} --number-of-nodes-to-remove 1', + checks=[self.check('nodeTypes[1].vmInstanceCount', 6)]) + + if __name__ == '__main__': unittest.main() diff --git a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py index 73961df0e07..07324a28eb8 100644 --- a/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py +++ b/src/azure-cli/azure/cli/command_modules/servicefabric/tests/latest/test_util.py @@ -47,7 +47,7 @@ def _create_cluster_with_separate_kv(test, kwargs): def _create_cluster(test, kwargs): - test.cmd('az sf cluster create -g {rg} -c {cluster_name} -l {loc} --certificate-output-folder MyCertificates --certificate-subject-name {cluster_name} --vm-password "{vm_password}" --cluster-size 3') + test.cmd('az sf cluster create -g {rg} -c {cluster_name} -l {loc} --certificate-subject-name {cluster_name} --vm-password "{vm_password}" --cluster-size {cluster_size}') timeout = time.time() + 900 while True: cluster = test.cmd('az sf cluster show -g {rg} -c {cluster_name}').get_output_in_json()